From a0aab15311b45b5dcd9ba2d3f3d3bcf3a2a45991 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 4 Sep 2018 11:11:54 -0700 Subject: [PATCH] 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 --- src/pylorax/sysutils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pylorax/sysutils.py b/src/pylorax/sysutils.py index 9735a7ff..209757ad 100644 --- a/src/pylorax/sysutils.py +++ b/src/pylorax/sysutils.py @@ -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: