Add missing comma in .pylintrc

Without the comma in the deprecated-modules section, any
subsequent arguments are silently ignored. Add it so pylint
will catch any six imports.

Change-Id: I4bca5ab81dd4ef6f28c7ff854dcc782a9b3c3f12
This commit is contained in:
Brian Haley 2022-09-23 15:22:16 -04:00
parent 23a2c980e2
commit 72493d1472

View File

@ -126,7 +126,7 @@ ignore-iface-methods=
# Deprecated modules which should not be used, separated by a comma
deprecated-modules=
# should use oslo_serialization.jsonutils
json
json,
six
[TYPECHECK]