From 9930e62bf8f005b407620ad6320bb4818001696b Mon Sep 17 00:00:00 2001 From: retoor Date: Fri, 13 Dec 2024 19:55:23 +0100 Subject: [PATCH] Formatting. --- src/ragnar/cli.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/ragnar/cli.py b/src/ragnar/cli.py index e894638..9d684f9 100644 --- a/src/ragnar/cli.py +++ b/src/ragnar/cli.py @@ -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)