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
Running the SQLAlchemy inspect method on an existing MySQL server on a table with a column with an empty comment field is returning comment=None so I guess comment to be Optional[str] but mypy output complains that it needs to be str. Actually I don't know why since the repo code shows:
Running the SQLAlchemy
inspect
method on an existing MySQL server on a table with a column with an empty comment field is returningcomment=None
so I guesscomment
to beOptional[str]
but mypy output complains that it needs to bestr
. Actually I don't know why since the repo code shows:sqlalchemy-stubs/sqlalchemy-stubs/sql/schema.pyi
Line 88 in 80f8932
Here is a MWE:
and output:
The text was updated successfully, but these errors were encountered: