Ignore a pylint warning about UnquotingConfigParser get args

The args differ, but we are accepting and passing through all args so
it's ok.

Related: rhbz#1613058
This commit is contained in:
Brian C. Lane 2018-09-04 11:11:54 -07:00
parent 5c0dfb74e6
commit a0aab15311
1 changed files with 1 additions and 0 deletions

View File

@ -114,6 +114,7 @@ def unquote(s):
class UnquotingConfigParser(ConfigParser):
"""A ConfigParser, only with unquoting of the values."""
# pylint: disable=arguments-differ
def get(self, *args, **kwargs):
ret = super().get(*args, **kwargs)
if ret: