From c1f1038f5e05884840380049be0c953d641e3e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Gr=C3=B8n=C3=A5s?= Date: Mon, 28 Aug 2023 19:23:20 +0200 Subject: [PATCH] Update teams.py --- BookingSystem/teams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BookingSystem/teams.py b/BookingSystem/teams.py index 5cd14ac..001d0d0 100644 --- a/BookingSystem/teams.py +++ b/BookingSystem/teams.py @@ -84,7 +84,7 @@ def get_deviation_card(new_deviations: list) -> pymsteams.connectorcard: def send_card_to_hooks(card: pymsteams.connectorcard, webhooks: list[str]) -> None: - """Send a card to a webhook.""" + """Send a card to all webhooks.""" for webhook in webhooks: card.newhookurl(webhook) Process(target=card.send).start()