Formatting.

This commit is contained in:
retoor 2024-12-13 19:55:23 +01:00
parent bd2c68118c
commit 9930e62bf8

View File

@ -33,18 +33,18 @@ def main():
args = parse_args()
with Executor(500) as executor:
usernames = [
'no-spam1',
'no-spam2',
'no-spam3',
'no-spam4',
'no-spam',
'no-spam2353',
'no-spam2351',
'no-spam2350',
'no-spam2349'
"no-spam1",
"no-spam2",
"no-spam3",
"no-spam4",
"no-spam",
"no-spam2353",
"no-spam2351",
"no-spam2350",
"no-spam2349",
]
for username in usernames:
executor.submit(bot_task,"{}@molodetz.nl".format(username), args.password)
executor.submit(bot_task, f"{username}@molodetz.nl", args.password)
executor.shutdown(wait=True)