Skip to content

Commit

Permalink
Make pylint happy
Browse files Browse the repository at this point in the history
New pylint reports (duplicated?) warning signature-differs in addition
to arguments-differ. Ignore this one too.
  • Loading branch information
marmarek committed May 10, 2020
1 parent 6ae3c94 commit 65dcee4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qubesadmin/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ def __init__(self, want_app=True, want_app_no_instance=False,

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)
Expand Down

0 comments on commit 65dcee4

Please sign in to comment.