Skip to content

Commit

Permalink
Fixes for new pylint version
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarta committed Apr 30, 2020
1 parent 6635efe commit 0893369
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion qubesadmin/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ 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=signature-differ
# hack for tests
app = kwargs.pop('app', None)
namespace = super(QubesArgumentParser, self).parse_args(*args, **kwargs)
Expand Down
1 change: 0 additions & 1 deletion qubesadmin/tools/qvm_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ def import_volume(args):
''' Import a file into volume '''

volume = args.volume
old_size = volume.size
input_path = args.input_path
if input_path == '-':
input_file = sys.stdin.buffer
Expand Down

0 comments on commit 0893369

Please sign in to comment.