We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8bf7e commit 027e0e9Copy full SHA for 027e0e9
sqlalchemy-stubs/orm/__init__.pyi
@@ -31,6 +31,7 @@ from .descriptor_props import (
31
from .relationships import foreign as foreign, remote as remote
32
from .session import (
33
Session as Session,
34
+ close_all_sessions as close_all_sessions,
35
object_session as object_session,
36
sessionmaker as sessionmaker,
37
make_transient as make_transient,
sqlalchemy-stubs/orm/session.pyi
@@ -109,3 +109,4 @@ class sessionmaker(_SessionClassMethods):
109
def make_transient(instance) -> None: ...
110
def make_transient_to_detached(instance) -> None: ...
111
def object_session(instance): ...
112
+def close_all_sessions() -> None: ...
0 commit comments