From 741c2f88c589ab0a314f4b7008e7a1df30254b7b Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Mon, 12 Feb 2024 18:14:16 -0500 Subject: question_of_the_day: fix ImportError --- question_of_the_day/question_of_the_day.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3-57-g22cb