Skip to content

Commit fdeec1d

Browse files
committed
Adjusted to work in 3.8
1 parent fe9e4de commit fdeec1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/flask_sqlalchemy/extension.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
_FSA_MCT = t.TypeVar(
3636
"_FSA_MCT",
3737
bound=t.Union[
38-
type[Model],
38+
t.Type[Model],
3939
sa_orm.DeclarativeMeta,
40-
type[sa_orm.DeclarativeBase],
41-
type[sa_orm.DeclarativeBaseNoMeta],
40+
t.Type[sa_orm.DeclarativeBase],
41+
t.Type[sa_orm.DeclarativeBaseNoMeta],
4242
],
4343
)
4444

0 commit comments

Comments
 (0)