aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjun Satarkar <me@arjunsatarkar.net>2024-02-12 23:14:16 +0000
committerArjun Satarkar <me@arjunsatarkar.net>2024-02-12 23:14:16 +0000
commit741c2f88c589ab0a314f4b7008e7a1df30254b7b (patch)
tree889e66077777e2814ca17136dcf00dbf29481c8f
parentebfe5ff39980bc0e527581f80282cfd51891ba69 (diff)
downloadaps-cogs-741c2f88c589ab0a314f4b7008e7a1df30254b7b.tar
aps-cogs-741c2f88c589ab0a314f4b7008e7a1df30254b7b.tar.gz
aps-cogs-741c2f88c589ab0a314f4b7008e7a1df30254b7b.zip
question_of_the_day: fix ImportError
-rw-r--r--question_of_the_day/question_of_the_day.py2
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