Skip to content

Commit 29237d5

Browse files
committed
Fix python import errors
1 parent 5086ddc commit 29237d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/app/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from backend.app import app
1+
from .app import app
22

33
__all__ = [app]

backend/app/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from backend.app import app
1+
from .app import app
22

33
__all__ = ["app"]

0 commit comments

Comments
 (0)