From 9275c69c78e573d31ef1e601e2c6e26dd1ea850c Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:52:39 -0700 Subject: [PATCH] umu_consts: update comment --- umu/umu_consts.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/umu/umu_consts.py b/umu/umu_consts.py index ba54164a6..706ab6a4b 100644 --- a/umu/umu_consts.py +++ b/umu/umu_consts.py @@ -36,7 +36,7 @@ class Color(Enum): } # Installation path of the runtime files -# Flatpak will be detected via the Container Interface outlined by systemd +# Flatpak will be detected as outlined by systemd # See https://systemd.io/CONTAINER_INTERFACE UMU_LOCAL: Path = ( Path.home().joinpath( @@ -45,6 +45,7 @@ class Color(Enum): if os.environ.get("container") == "flatpak" # noqa: SIM112 else Path.home().joinpath(".local", "share", "umu") ) + # Constant defined in prctl.h # See prctl(2) for more details PR_SET_CHILD_SUBREAPER = 36