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:
parent
d1aa8676ab
commit
a93a32a177
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user