Skip to content

Commit 52fe4d9

Browse files
committed
Fix linting issue
1 parent d547419 commit 52fe4d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/core/utils/extend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class SettingsOverrideMeta(type):
3232

3333
"""Meta class for passing along classmethod class to the underlying class"""
3434

35-
def __getattr__(cls, attr):
35+
def __getattr__(cls, attr): # noqa: pep8 false positive
3636
proxy_class = getattr(cls, '_default_class')
3737
return getattr(proxy_class, attr)
3838

0 commit comments

Comments
 (0)