You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to run the app via python app.py I get the following error:
python app.py
Traceback (most recent call last):
File "app.py", line 25, in <module>
from models import User # noqa
File "/app/models.py", line 1, in <module>
from app import db
File "/app/app.py", line 25, in <module>
from models import User # noqa
ImportError: cannot import name 'User' from partially initialized module 'models' (most likely due to a circular import) (/app/models.py)
I'm working on a fix. Shouldn't be too complicated.
The text was updated successfully, but these errors were encountered:
When attempting to run the app via
python app.py
I get the following error:I'm working on a fix. Shouldn't be too complicated.
The text was updated successfully, but these errors were encountered: