Skip to content

Commit d8de898

Browse files
committed
Fix issue with flake8's B902
The ``classproperty`` decorator is provided by Django, so B902 is silenced for the respective class method implementation and its test code.
1 parent a1bc10b commit d8de898

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

calingen/interfaces/plugin_api.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ class LayoutProvider(metaclass=PluginMount):
251251
"""
252252

253253
@classproperty
254-
def title(cls):
254+
def title(cls): # noqa: B902
255255
"""Return the plugin's human-readable title.
256256
257257
Returns
@@ -268,6 +268,9 @@ def title(cls):
268268
different way, it may provide a specific implementation of this method
269269
or provide a plain ``title`` class attribute, resolving to a
270270
:py:obj:`str` (TODO: NEEDS VERIFICATION!).
271+
272+
The ``classproperty`` decorator is provided by Django, so B902 is
273+
disabled on this.
271274
"""
272275
return "{} ({}, {})".format(cls.name, cls.paper_size, cls.orientation)
273276

tests/interfaces/test_plugin_api.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ def test_list_available_plugins(self):
9696

9797
class LayoutProviderTestImplementation_list_plugins_test(LayoutProvider):
9898
@classproperty
99-
def title(cls):
99+
def title(cls): # noqa: B902
100+
# The ``classproperty`` decorator is provided by Django, so
101+
# B902 is disabled here.
100102
return test_implementation_title
101103

102104
# Act (actually perform what has to be done)

0 commit comments

Comments
 (0)