pylint: skip ManageResource Mixin

cinder.api.v3.resource_common_manage.ManageResource
is not automatically detected as a Mixin due to its
name, so manually list it here to skip no-member
checks.

Change-Id: I324377a93b8063f943e2751f58fc895c7113aa74
This commit is contained in:
Eric Harney 2022-05-23 11:58:51 -04:00
parent 2f060e037d
commit c577d184f8
1 changed files with 2 additions and 0 deletions

View File

@ -208,6 +208,8 @@ module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(neutron-[a-z0-9_-]+))$
# Don't require docstrings on tests.
no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$
mixin-class-rgx=(^(ManageResource)$|.*[Mm]ixin)
[FORMAT]
# Maximum number of characters on a single line.