From 6258427c42889eb2b0804a617074650b4b440299 Mon Sep 17 00:00:00 2001 From: Joseph Montanaro <=> Date: Fri, 21 Jan 2022 10:09:16 -0800 Subject: [PATCH] temporarily remove slack hook --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index c78e3f5..439482f 100644 --- a/bot.py +++ b/bot.py @@ -150,6 +150,6 @@ if __name__ == '__main__': wordle_num = (datetime.date.today() - datetime.date(2022, 1, 17)).days + 212 lines = [f"Wordle {wordle_num}: {result['iterations']}/6"] lines = lines + [''.join(row) for row in result['history']] - requests.post(os.environ['SLACK_HOOK_URL'], json={'text': '\n'.join(lines)}) + # requests.post(os.environ['SLACK_HOOK_URL'], json={'text': '\n'.join(lines)}) else: print('Failed to find the word.')