Skip to content

Commit

Permalink
q-dev: make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrbartman committed Oct 14, 2024
1 parent 1315da6 commit 6ee680e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qui/tools/attach_confirm.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def main():
"targets": sys.argv[4:],
"default_target": sys.argv[4] if number_of_targets == 1 else "",
"icons": {
doms[d].name
if doms[d].klass != "DispVM" else f'@dispvm:{doms[d].name}':
doms[d].icon for d in doms.keys()
dom.name
if dom.klass != "DispVM" else f'@dispvm:{dom.name}':
dom.icon for dom in doms.values()
},
}

Expand Down

0 comments on commit 6ee680e

Please sign in to comment.