From 90191a25766b45516e118edf0f46f308e8ae6dd5 Mon Sep 17 00:00:00 2001 From: Fries Date: Wed, 19 Oct 2022 18:22:23 -0700 Subject: [PATCH] run black linter --- bot.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/bot.py b/bot.py index 655240a..f6b3fcb 100644 --- a/bot.py +++ b/bot.py @@ -8,14 +8,14 @@ def post_update(text): repo = g.get_repo("crystalrfc-bot/status") thread = repo.get_issue(1) thread.create_comment( - text + - "\nBeep Boop! (I'm a bot, and this action was performed automagically.)\nScan timestamp: `" + - datetime.now().isoformat() + - "`" + text + + "\nBeep Boop! (I'm a bot, and this action was performed automagically.)\nScan timestamp: `" + + datetime.now().isoformat() + + "`" ) -targets = ['crystal-linux/.github', 'crystal-linux-packages/.github'] +targets = ["crystal-linux/.github", "crystal-linux-packages/.github"] status_text = "" @@ -23,8 +23,10 @@ for tgt in targets: repo = g.get_repo(tgt) status_text += f"# Examining {repo.full_name}\n" - core_team = g.get_organization('crystal-linux').get_team_by_slug('core-team') - trusted_contrib = g.get_organization('crystal-linux').get_team_by_slug('trusted-contribututors') + core_team = g.get_organization("crystal-linux").get_team_by_slug("core-team") + trusted_contrib = g.get_organization("crystal-linux").get_team_by_slug( + "trusted-contribututors" + ) core_team_members = core_team.get_members() trusted_contrib_members = trusted_contrib.get_members() @@ -38,7 +40,7 @@ for tgt in targets: rfcs_passed = 0 for issue in repo.get_issues(): - if 'RFC' in issue.title: + if "RFC" in issue.title: print(f"Working on: {issue.title}") all_reactions = issue.get_reactions() if all_reactions.totalCount != 0: