Skip to content

Commit

Permalink
Make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarek committed Apr 17, 2024
1 parent e4dfce5 commit 9d054bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qui/updater/progress_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ def _get_packages_admin() -> Dict[str, List[str]]:
Use rpm to return the installed packages and their versions.
"""

cmd = ["rpm", "-qa", "--queryformat", "%{NAME} %{VERSION}-%{RELEASE}\n",]
cmd = ["rpm", "-qa", "--queryformat",
"%{NAME} %{VERSION}-%{RELEASE}\n",]
# EXAMPLE OUTPUT:
# qubes-core-agent 4.1.351.fc34
package_list = subprocess.check_output(cmd).decode().splitlines()
Expand Down

0 comments on commit 9d054bf

Please sign in to comment.