Skip to content

Commit

Permalink
fixup syntax: we still support python2 here
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jun 26, 2022
1 parent 51019b3 commit 1e71d4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xpra/os_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,13 +333,13 @@ def is_Arch():
def is_CentOS():
return is_distribution_variant(b"CentOS")

def is_AlmaLinux() -> bool:
def is_AlmaLinux():
return is_distribution_variant(b"AlmaLinux")

def is_RockyLinux() -> bool:
def is_RockyLinux():
return is_distribution_variant(b"Rocky Linux")

def is_OracleLinux() -> bool:
def is_OracleLinux():
return is_distribution_variant(b"Oracle Linux")

def is_RedHat():
Expand Down

0 comments on commit 1e71d4d

Please sign in to comment.