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
Example of op.create_index: op.create_index(op.f('ix_token_expired_at'), 'token', ['expired_at'], unique=False)
warning: Type of "create_index" is partially unknown
reason (most likely): columns parameter has type Sequence[str | TextClause | Function[Unknown]]. Function generic is missing type parameter.
Example of op.create_index:
op.create_index(op.f('ix_token_expired_at'), 'token', ['expired_at'], unique=False)
warning: Type of "create_index" is partially unknown
reason (most likely):
columns
parameter has typeSequence[str | TextClause | Function[Unknown]]
.Function
generic is missing type parameter.Expected behavior
No warnings produced
Versions.
Additional context
See: sqlalchemy/sqlalchemy#9391
Thanks!
The text was updated successfully, but these errors were encountered: