Skip to content

Commit

Permalink
Make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarek committed May 15, 2024
1 parent 62b5623 commit 5486fb8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions qubesadmin/tools/qvm_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -1324,6 +1324,8 @@ def check_append(name, evr):
tpl_list_dict = info_to_machine_output(tpl_list)
elif command == 'list':
tpl_list_dict = list_to_machine_output(tpl_list)
else:
assert False, f"Invalid command {command}"

Check warning on line 1328 in qubesadmin/tools/qvm_template.py

View check run for this annotation

Codecov / codecov/patch

qubesadmin/tools/qvm_template.py#L1328

Added line #L1328 was not covered by tests
for status, grp in tpl_list_dict.items():
for line in grp:
print('|'.join([status] + list(line.values())))
Expand Down

0 comments on commit 5486fb8

Please sign in to comment.