Remove some extraneous # noqa comments (#530)
Automated using [yesqa](https://github.com/asottile/yesqa/) with the following command: ```bash pre-commit try-repo https://github.com/asottile/yesqa/ --all-files ```
This commit is contained in:
parent
338364715d
commit
de8caa841f
|
@ -20,7 +20,7 @@ else:
|
|||
|
||||
if PY2:
|
||||
from UserDict import IterableUserDict
|
||||
from collections import Mapping, Sequence # noqa
|
||||
from collections import Mapping, Sequence
|
||||
|
||||
# We 'bundle' isclass instead of using inspect as importing inspect is
|
||||
# fairly expensive (order of 10-15 ms for a modern machine in 2016)
|
||||
|
|
|
@ -233,14 +233,14 @@ class TestAsTuple(object):
|
|||
elif isinstance(field_val, (list, tuple)):
|
||||
# This field holds a sequence of something.
|
||||
expected_type = type(obj_tuple[index])
|
||||
assert type(field_val) is expected_type # noqa: E721
|
||||
assert type(field_val) is expected_type
|
||||
for obj_e, obj_tuple_e in zip(field_val, obj_tuple[index]):
|
||||
if has(obj_e.__class__):
|
||||
assert_proper_col_class(obj_e, obj_tuple_e)
|
||||
elif isinstance(field_val, dict):
|
||||
orig = field_val
|
||||
tupled = obj_tuple[index]
|
||||
assert type(orig) is type(tupled) # noqa: E721
|
||||
assert type(orig) is type(tupled)
|
||||
for obj_e, obj_tuple_e in zip(
|
||||
orig.items(), tupled.items()
|
||||
):
|
||||
|
|
|
@ -40,7 +40,7 @@ class C1(object):
|
|||
if not PY2:
|
||||
|
||||
def my_class(self):
|
||||
return __class__ # NOQA: F821
|
||||
return __class__
|
||||
|
||||
def my_super(self):
|
||||
"""Just to test out the no-arg super."""
|
||||
|
@ -66,7 +66,7 @@ class C1Slots(object):
|
|||
if not PY2:
|
||||
|
||||
def my_class(self):
|
||||
return __class__ # NOQA: F821
|
||||
return __class__
|
||||
|
||||
def my_super(self):
|
||||
"""Just to test out the no-arg super."""
|
||||
|
@ -367,12 +367,12 @@ class TestClosureCellRewriting(object):
|
|||
@attr.s
|
||||
class C2(C1):
|
||||
def my_subclass(self):
|
||||
return __class__ # NOQA: F821
|
||||
return __class__
|
||||
|
||||
@attr.s
|
||||
class C2Slots(C1Slots):
|
||||
def my_subclass(self):
|
||||
return __class__ # NOQA: F821
|
||||
return __class__
|
||||
|
||||
non_slot_instance = C2(x=1, y="test")
|
||||
slot_instance = C2Slots(x=1, y="test")
|
||||
|
@ -400,7 +400,7 @@ class TestClosureCellRewriting(object):
|
|||
class C:
|
||||
@classmethod
|
||||
def clsmethod(cls):
|
||||
return __class__ # noqa: F821
|
||||
return __class__
|
||||
|
||||
assert C.clsmethod() is C
|
||||
|
||||
|
@ -408,7 +408,7 @@ class TestClosureCellRewriting(object):
|
|||
class D:
|
||||
@staticmethod
|
||||
def statmethod():
|
||||
return __class__ # noqa: F821
|
||||
return __class__
|
||||
|
||||
assert D.statmethod() is D
|
||||
|
||||
|
|
Loading…
Reference in New Issue