@@ -15,7 +15,6 @@ from .engine import AsyncEngine
15
15
from .result import AsyncResult
16
16
from ... import util
17
17
from ...engine import Result
18
- from ...engine .base import _ExecutionOptions
19
18
from ...orm import Session
20
19
from ...orm .session import _IdentityMap
21
20
from ...sql import ClauseElement
@@ -55,7 +54,7 @@ class AsyncSession:
55
54
params : Optional [
56
55
Union [Mapping [str , Any ], Sequence [Mapping [str , Any ]]]
57
56
] = ...,
58
- execution_options : Optional [_ExecutionOptions ] = ...,
57
+ execution_options : Optional [Mapping [ Any , Any ] ] = ...,
59
58
bind_arguments : Optional [Mapping [str , Any ]] = ...,
60
59
** kw : Any ,
61
60
) -> Result : ...
@@ -65,7 +64,7 @@ class AsyncSession:
65
64
params : Optional [
66
65
Union [Mapping [str , Any ], Sequence [Mapping [str , Any ]]]
67
66
] = ...,
68
- execution_options : _ExecutionOptions = ...,
67
+ execution_options : Mapping [ Any , Any ] = ...,
69
68
bind_arguments : Optional [Mapping [str , Any ]] = ...,
70
69
** kw : Any ,
71
70
) -> Any : ...
@@ -84,7 +83,7 @@ class AsyncSession:
84
83
params : Optional [
85
84
Union [Mapping [str , Any ], Sequence [Mapping [str , Any ]]]
86
85
] = ...,
87
- execution_options : _ExecutionOptions = ...,
86
+ execution_options : Mapping [ Any , Any ] = ...,
88
87
bind_arguments : Optional [Mapping [str , Any ]] = ...,
89
88
** kw : Any ,
90
89
) -> AsyncResult : ...
0 commit comments