Pylint: Filter out cinder.objects and requests E1101
Use generated-members to filter out false positives. Unfortunately, generated-members doesn't really work right, but this is close enough for now. Change-Id: I184c3c98a90428dbb033da42d8938e8af9866b78
This commit is contained in:
parent
786246e66f
commit
aa13e3b3c3
@ -223,3 +223,8 @@ additional-builtins=_
|
|||||||
# List of module names for which member attributes should not be checked
|
# List of module names for which member attributes should not be checked
|
||||||
ignored-modules=six.moves,_MovedItems
|
ignored-modules=six.moves,_MovedItems
|
||||||
|
|
||||||
|
# This is for cinder.objects.*, and requests.packages.*, but due to
|
||||||
|
# https://github.com/PyCQA/pylint/issues/2498
|
||||||
|
# it doesn't seem that generated-members can be specified correctly.
|
||||||
|
# Clean this up later when pylint works correctly.
|
||||||
|
generated-members=objects,requests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user