]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add missing overload to __add__
authorYossi Rozantsev <54272821+Apakottur@users.noreply.github.com>
Tue, 23 Apr 2024 09:46:17 +0000 (09:46 +0000)
committerGitHub <noreply@github.com>
Tue, 23 Apr 2024 09:46:17 +0000 (09:46 +0000)
lib/sqlalchemy/sql/elements.py

index 4e46070060a43d0b32c9bfd3eb795832da451f91..2418820594fe5fa4475d35ab74afed802fcfcd0b 100644 (file)
@@ -1069,6 +1069,9 @@ class SQLCoreOperations(Generic[_T_co], ColumnOperators, TypingOnly):
             other: Any,
         ) -> ColumnElement[str]: ...
 
+        @overload
+        def __add__(self, other: Any) -> ColumnElement[Any]: ...
+            
         def __add__(self, other: Any) -> ColumnElement[Any]: ...
 
         @overload