diff --git a/pymbolic/primitives.py b/pymbolic/primitives.py index d6198e30cbafb422f484f36190449ea8d48cae81..018cbaae75ac93009fbb62901df9baf7b8ce653a 100644 --- a/pymbolic/primitives.py +++ b/pymbolic/primitives.py @@ -1310,7 +1310,7 @@ class Vector(Expression): def __div__(self, other): # Py2 only import operator - return Vector(tuple(operator.div(x, other) for x in self)) # pylint: disable=no-member + return Vector(tuple(operator.div(x, other) for x in self)) # noqa pylint: disable=no-member def __truediv__(self, other): import operator