diff options
| author | 2021-10-26 07:35:05 -0400 | |
|---|---|---|
| committer | 2022-02-09 18:13:36 -0500 | |
| commit | 0a4c259d4726a3eb044cb9f57b871f4d46bed328 (patch) | |
| tree | 4ba9f2b9c2dfe53ba6ef993d54a8022361ee5827 | |
| parent | using enumerate for brevity (diff) | |
Better type hinting
Co-authored-by: Bluenix <[email protected]>
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/events/trivianight/_questions.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/events/trivianight/_questions.py b/bot/exts/events/trivianight/_questions.py index df3f237a..73d147f0 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -15,7 +15,7 @@ class CurrentQuestion(TypedDict):      number: str      description: str -    answers: list +    answers: list[str]      correct: str | 
