From fe75fb7acc30e7890827ec3fbfd58355255dd637 Mon Sep 17 00:00:00 2001 From: Lili Date: Sat, 5 Oct 2024 22:09:13 +0200 Subject: [PATCH] type signature for send_help --- tlapbot/help_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlapbot/help_message.py b/tlapbot/help_message.py index fabd11f..31672e9 100644 --- a/tlapbot/help_message.py +++ b/tlapbot/help_message.py @@ -2,7 +2,7 @@ from flask import current_app from tlapbot.owncast_requests import send_chat -def send_help(): +def send_help() -> None: message = [] message.append("Tlapbot gives you points for being in chat, and then allows you to spend those points.
") message.append(f"People connected to chat receive {current_app.config['POINTS_AMOUNT_GIVEN']} points every {current_app.config['POINTS_CYCLE_TIME']} seconds.
")