diff --git a/backend/localplatform.py b/backend/localplatform.py index 30d0945da..519c9ac17 100644 --- a/backend/localplatform.py +++ b/backend/localplatform.py @@ -45,6 +45,6 @@ def get_log_level() -> int: def get_selinux() -> bool: if ON_LINUX: from subprocess import check_output - check_output("getenforce").decode('ascii').strip("\n") == "Enforcing" ? True : False + check_output("getenforce").decode("ascii").strip("\n") == "Enforcing" ? True : False else: return False