@@ -15,7 +15,6 @@ from .engine import AsyncEngine
1515from .result import AsyncResult
1616from ... import util
1717from ...engine import Result
18- from ...engine .base import _ExecutionOptions
1918from ...orm import Session
2019from ...orm .session import _IdentityMap
2120from ...sql import ClauseElement
@@ -55,7 +54,7 @@ class AsyncSession:
5554 params : Optional [
5655 Union [Mapping [str , Any ], Sequence [Mapping [str , Any ]]]
5756 ] = ...,
58- execution_options : Optional [_ExecutionOptions ] = ...,
57+ execution_options : Optional [Mapping [ Any , Any ] ] = ...,
5958 bind_arguments : Optional [Mapping [str , Any ]] = ...,
6059 ** kw : Any ,
6160 ) -> Result : ...
@@ -65,7 +64,7 @@ class AsyncSession:
6564 params : Optional [
6665 Union [Mapping [str , Any ], Sequence [Mapping [str , Any ]]]
6766 ] = ...,
68- execution_options : _ExecutionOptions = ...,
67+ execution_options : Mapping [ Any , Any ] = ...,
6968 bind_arguments : Optional [Mapping [str , Any ]] = ...,
7069 ** kw : Any ,
7170 ) -> Any : ...
@@ -84,7 +83,7 @@ class AsyncSession:
8483 params : Optional [
8584 Union [Mapping [str , Any ], Sequence [Mapping [str , Any ]]]
8685 ] = ...,
87- execution_options : _ExecutionOptions = ...,
86+ execution_options : Mapping [ Any , Any ] = ...,
8887 bind_arguments : Optional [Mapping [str , Any ]] = ...,
8988 ** kw : Any ,
9089 ) -> AsyncResult : ...
0 commit comments