Fix type errors

This commit is contained in:
bad 2022-06-08 19:27:42 +02:00
parent 2579fa4b5c
commit a9bbd6c6a8
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ def update_pronouns() -> Tuple[str, int]:
trigger_update_pronouns(pronouns)
return pronouns, 200
def main():
def main() -> None:
app.run(host="0.0.0.0", port=8080)
if __name__ == "__main__":