diff options
Diffstat (limited to 'lib/sqlalchemy/sql/operators.py')
-rw-r--r-- | lib/sqlalchemy/sql/operators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index 7db1631c8..ebc8a28ce 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -417,7 +417,7 @@ class custom_op(OperatorType, Generic[_T]): if hasattr(left, "__sa_operate__"): return left.operate(self, right, *other, **kwargs) elif self.python_impl: - return self.python_impl(left, right, *other, **kwargs) # type: ignore # noqa E501 + return self.python_impl(left, right, *other, **kwargs) # type: ignore # noqa: E501 else: raise exc.InvalidRequestError( f"Custom operator {self.opstring!r} can't be used with " |