diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2024-02-12 23:14:16 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2024-02-12 23:14:16 +0000 |
commit | 741c2f88c589ab0a314f4b7008e7a1df30254b7b (patch) | |
tree | 889e66077777e2814ca17136dcf00dbf29481c8f /question_of_the_day/question_of_the_day.py | |
parent | ebfe5ff39980bc0e527581f80282cfd51891ba69 (diff) | |
download | aps-cogs-741c2f88c589ab0a314f4b7008e7a1df30254b7b.tar aps-cogs-741c2f88c589ab0a314f4b7008e7a1df30254b7b.tar.gz aps-cogs-741c2f88c589ab0a314f4b7008e7a1df30254b7b.zip |
question_of_the_day: fix ImportError
Diffstat (limited to 'question_of_the_day/question_of_the_day.py')
-rw-r--r-- | question_of_the_day/question_of_the_day.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index 76286a1..1a0f74b 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -10,7 +10,7 @@ import pathlib import random import time import typing -from errors import * +from .errors import * MAX_QUESTIONS_PER_GUILD = 1000 MAX_QUESTION_SIZE = 500 |