diff --git a/app/notification.py b/app/notification.py index db13610..13b62d1 100644 --- a/app/notification.py +++ b/app/notification.py @@ -37,7 +37,7 @@ class WebhookSenderThread(Thread): def slack_webhook(self) -> None: if self.url: - requests.post(url, json={"text": self.message}) + requests.post(self.url, json={"text": self.message}) else: print(self.message)