From b6150cab7d0a6e159f0b93fa088add4d29e7cb7b Mon Sep 17 00:00:00 2001 From: David Muckle Date: Sun, 24 Dec 2023 10:09:49 -0500 Subject: [PATCH] Further satisfy linter --- config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/__init__.py b/config/__init__.py index 5ce889f4..25acc41a 100644 --- a/config/__init__.py +++ b/config/__init__.py @@ -139,7 +139,7 @@ def appversion() -> semantic_version.Version: else: # Running from source. For Linux, check to see if .gitversion file exists # If so, use it. This is also required for the Flatpak - if pathlib.Path("./" + GITVERSION_FILE).is_file: + if pathlib.Path("./" + GITVERSION_FILE).is_file(): with open(pathlib.Path("./" + GITVERSION_FILE)) as gitv: shorthash = gitv.read() else: