summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/operators.py
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2022-04-11 22:21:20 +0200
committerFederico Caselli <cfederico87@gmail.com>2022-04-11 22:48:23 +0200
commit11bf82447438a9d5d9df9d613bf245694d6120dc (patch)
tree727dd81d7dbf9811b15639aabb4ee69ce4ee5646 /lib/sqlalchemy/sql/operators.py
parentfd052732604a0d03167978215f0077e60b75851d (diff)
downloadsqlalchemy-11bf82447438a9d5d9df9d613bf245694d6120dc.tar.gz
update flake8 noqa skips with proper syntax
Change-Id: I42ed77f559e3ee5b8c600d98457ee37803ef0ea6
Diffstat (limited to 'lib/sqlalchemy/sql/operators.py')
-rw-r--r--lib/sqlalchemy/sql/operators.py2
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 "