Skip to content

Commit dfa3733

Browse files
authored
Update query.py, fix bug that cannot pass py311-lowest test
1 parent 24f028b commit dfa3733

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flask_sqlalchemy/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from .pagination import QueryPagination
1111

1212

13-
class Query(sa_orm.Query[t.Any]):
13+
class Query(sa_orm.Query): # type: ignore[type-arg]
1414
"""SQLAlchemy :class:`~sqlalchemy.orm.query.Query` subclass with some extra methods
1515
useful for querying in a web application.
1616

0 commit comments

Comments
 (0)