From: Yossi Rozantsev <54272821+Apakottur@users.noreply.github.com> Date: Tue, 23 Apr 2024 09:46:17 +0000 (+0000) Subject: Add missing overload to __add__ X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=991703dd3695c89a13fbcbee5abcc8edef636379;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add missing overload to __add__ --- diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py index 4e46070060..2418820594 100644 --- a/lib/sqlalchemy/sql/elements.py +++ b/lib/sqlalchemy/sql/elements.py @@ -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