Skip to content

Commit

Permalink
Appease new version of black lint tool
Browse files Browse the repository at this point in the history
  • Loading branch information
deeplow committed Feb 13, 2024
1 parent 7168a40 commit 75f8d76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dangerzone/gui/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ def _find_pdf_viewers(self) -> Dict[str, str]:
"application/pdf" in desktop_entry.getMimeTypes()
and desktop_entry.getName() != "dangerzone"
):
pdf_viewers[
desktop_entry.getName()
] = desktop_entry.getExec()
pdf_viewers[desktop_entry.getName()] = (
desktop_entry.getExec()
)

except FileNotFoundError:
pass
Expand Down

0 comments on commit 75f8d76

Please sign in to comment.