Fix missed six library items in .pylintrc
The six library was removed and depcrecated a while ago, but .pylintrc wasn't updated accordingly. This makes it match what was done in the neutron repo. Trivialfix Change-Id: I779b1d0445df874eca1a59a17d54e00a68f4c865
This commit is contained in:
parent
f831de7f2f
commit
d9284ee76f
@ -111,11 +111,12 @@ additional-builtins=_
|
|||||||
# Deprecated modules which should not be used, separated by a comma
|
# Deprecated modules which should not be used, separated by a comma
|
||||||
deprecated-modules=
|
deprecated-modules=
|
||||||
# should use oslo_serialization.jsonutils
|
# should use oslo_serialization.jsonutils
|
||||||
json
|
json,
|
||||||
|
six
|
||||||
|
|
||||||
[TYPECHECK]
|
[TYPECHECK]
|
||||||
# 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=_MovedItems
|
||||||
|
|
||||||
[REPORTS]
|
[REPORTS]
|
||||||
# Tells whether to display a full report or only the messages
|
# Tells whether to display a full report or only the messages
|
||||||
|
Loading…
Reference in New Issue
Block a user