Skip to content

Commit

Permalink
fix: circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintShit committed Oct 15, 2024
1 parent cfd3026 commit 75bcdd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from app.routers import api_router
import logging
from apscheduler.schedulers.background import BackgroundScheduler
from fastapi import FastAPI, Request, status
Expand Down Expand Up @@ -35,6 +34,7 @@
)

from app import dashboard, telegram, routers, jobs # noqa
from app.routers import api_router # noqa

app.include_router(api_router)

Expand Down

0 comments on commit 75bcdd9

Please sign in to comment.