From d9284ee76fffd151feddb4f68cdb8c0198bacfba Mon Sep 17 00:00:00 2001 From: Brian Haley Date: Thu, 22 Sep 2022 17:51:56 -0400 Subject: [PATCH] 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 --- .pylintrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 4e8bc466f..bd1f305d9 100644 --- a/.pylintrc +++ b/.pylintrc @@ -111,11 +111,12 @@ additional-builtins=_ # Deprecated modules which should not be used, separated by a comma deprecated-modules= # should use oslo_serialization.jsonutils - json + json, + six [TYPECHECK] # List of module names for which member attributes should not be checked -ignored-modules=six.moves,_MovedItems +ignored-modules=_MovedItems [REPORTS] # Tells whether to display a full report or only the messages