]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Missed second compile
authorEugene Toder <eltoder@users.noreply.github.com>
Tue, 5 Mar 2024 18:48:36 +0000 (13:48 -0500)
committerGitHub <noreply@github.com>
Tue, 5 Mar 2024 18:48:36 +0000 (13:48 -0500)
lib/sqlalchemy/sql/elements.py

index a1536f99fa1eefecc65cf622293526e129df1eda..1afc211b750585690fd23f588e764fe3f13471ea 100644 (file)
@@ -781,7 +781,7 @@ class DQLDMLClauseElement(ClauseElement):
 
         def compile(  # noqa: A001
             self,
-            bind: Optional[Union[Engine, Connection]] = None,
+            bind: Optional[Union[Engine, AsyncEngine, Connection]] = None,
             dialect: Optional[Dialect] = None,
             **kw: Any,
         ) -> SQLCompiler: ...