Skip to content

Commit

Permalink
Stylistic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RodoMa92 authored Aug 26, 2023
1 parent df785ab commit 60d2a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/localplatform.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 60d2a0a

Please sign in to comment.