Skip to content

Commit f6083f9

Browse files
authored
Fix variable name error (#222)
1 parent 4695252 commit f6083f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlalchemy-stubs/orm/session.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ _T = TypeVar("_T")
3939
_M = TypeVar("_M")
4040
_TSession = TypeVar("_TSession", bound=Session)
4141
_TSessionNoIoTypingCommon = TypeVar(
42-
"_TSession", bound=_SessionNoIoTypingCommon
42+
"_TSessionNoIoTypingCommon", bound=_SessionNoIoTypingCommon
4343
)
4444
_TSessionTransaction = TypeVar(
4545
"_TSessionTransaction", bound=SessionTransaction

0 commit comments

Comments
 (0)