Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
imLinguin committed Sep 5, 2024
1 parent c7c9acc commit 7faedb9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions umu/umu_consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@

# Flatpak will be detected as outlined by systemd
# See https://systemd.io/CONTAINER_INTERFACE
IS_FLATPAK = os.environ.get("container") == "flatpak"
IS_FLATPAK = os.environ.get("container") == "flatpak" # noqa: SIM112
default_data_home = Path.home().joinpath(".local", "share")
flatpak_data_home = Path(os.environ.get("HOST_XDG_DATA_HOME", default_data_home))
flatpak_data_home = Path(
os.environ.get("HOST_XDG_DATA_HOME", default_data_home))

# Installation path of the runtime files
UMU_LOCAL: Path = (
Expand Down

0 comments on commit 7faedb9

Please sign in to comment.