🐛 Fix patch circular import

fix #40
This commit is contained in:
xtaodada 2023-11-15 13:34:52 +08:00
parent 7c77de9e30
commit 8e5c4043f0
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659
2 changed files with 1 additions and 3 deletions

1
run.py
View File

@ -11,6 +11,7 @@ except ImportError:
def run(): def run():
__import__("utils.patch")
from core.application import Application from core.application import Application
from dotenv import load_dotenv from dotenv import load_dotenv

View File

@ -1,3 +0,0 @@
import utils.patch
__all__ = (utils.patch,)