Make pylint happy
New pylint reports (duplicated?) warning signature-differs in addition to arguments-differ. Ignore this one too.
This commit is contained in:
parent
6ae3c94ba5
commit
65dcee424a
@ -378,7 +378,8 @@ class QubesArgumentParser(argparse.ArgumentParser):
|
||||
|
||||
self.set_defaults(verbose=1, quiet=0)
|
||||
|
||||
def parse_args(self, *args, **kwargs): # pylint: disable=arguments-differ
|
||||
def parse_args(self, *args, **kwargs):
|
||||
# pylint: disable=arguments-differ,signature-differs
|
||||
# hack for tests
|
||||
app = kwargs.pop('app', None)
|
||||
namespace = super(QubesArgumentParser, self).parse_args(*args, **kwargs)
|
||||
|
Loading…
Reference in New Issue
Block a user