diff options
Diffstat (limited to 'lib/sqlalchemy/sql/operators.py')
-rw-r--r-- | lib/sqlalchemy/sql/operators.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index cf61f2637..255e77b7f 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -57,6 +57,8 @@ _T = TypeVar("_T", bound=Any) class OperatorType(Protocol): """describe an op() function.""" + __slots__ = () + __name__: str def __call__( |