1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

Further satisfy linter

This commit is contained in:
David Muckle 2023-12-24 10:09:49 -05:00
parent c522250a40
commit b6150cab7d

View File

@ -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: