significant refactor/cleanup

This commit is contained in:
2025-02-11 20:01:07 -05:00
parent 2c368aaf1a
commit 88d870ce8f
12 changed files with 440 additions and 467 deletions

View File

@ -23,7 +23,7 @@ class RandMsg(FastAPI):
Get a randomly generated message
"""
random.seed()
short = data.short if data else False
short: bool = data.short if data else False
if not short:
db_rand_selected = random.choice([0, 1, 3])
else: