We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9583c5e commit 496ce4eCopy full SHA for 496ce4e
src/lazy_object_proxy/compat.py
@@ -6,7 +6,7 @@
6
if PY3:
7
string_types = str, bytes
8
else:
9
- string_types = basestring,
+ string_types = basestring, # noqa: F821
10
11
12
def with_metaclass(meta, *bases):
src/lazy_object_proxy/slots.py
@@ -116,8 +116,8 @@ def __name__(self, value):
116
def __class__(self):
117
return self.__wrapped__.__class__
118
119
- @__class__.setter # noqa
120
- def __class__(self, value):
+ @__class__.setter
+ def __class__(self, value): # noqa: F811
121
self.__wrapped__.__class__ = value
122
123
@property
0 commit comments