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 I try to call from aiopg.sa import create_engine I get an error like this: ModuleNotFoundError: No module named 'sqlalchemy.sql.ddl'. It is caused by the from sqlalchemy.sql.ddl import DDLElement command in connection.py.
I believe it should do the following instead for newer versions of sqlalchemy:
from sqlalchemy.schema import DDLElement
The text was updated successfully, but these errors were encountered:
When I try to call
from aiopg.sa import create_engine
I get an error like this:ModuleNotFoundError: No module named 'sqlalchemy.sql.ddl'
. It is caused by thefrom sqlalchemy.sql.ddl import DDLElement
command inconnection.py
.I believe it should do the following instead for newer versions of sqlalchemy:
The text was updated successfully, but these errors were encountered: