Skip to content

Commit 3cacb4a

Browse files
committed
Fix NOQA in ruff
1 parent ea9246e commit 3cacb4a

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
@@ -38,7 +38,7 @@ class SettingsOverrideMeta(type):
3838
Meta class for passing along classmethod class to the underlying class.
3939
"""
4040

41-
def __getattr__(cls, attr): # noqa: pep8 false positive
41+
def __getattr__(cls, attr): # noqa
4242
proxy_class = get_override_class(cls, getattr(cls, "_default_class"))
4343
return getattr(proxy_class, attr)
4444

0 commit comments

Comments
 (0)