Fix indentation with tabs instead of spaces

This commit is contained in:
Richard Neumann 2021-09-06 17:15:40 +02:00
parent 81f3ccad40
commit 712e5d4a70
1 changed files with 2 additions and 2 deletions

View File

@ -80,10 +80,10 @@ def has_wifi() -> bool:
def has_amd_cpu() -> bool:
return any(cpu.get("vendor_id") == "AuthenticAMD" for cpu in cpuinfo())
return any(cpu.get("vendor_id") == "AuthenticAMD" for cpu in cpuinfo())
def has_intel_cpu() -> bool:
return any(cpu.get("vendor_id") == "GenuineIntel" for cpu in cpuinfo())
return any(cpu.get("vendor_id") == "GenuineIntel" for cpu in cpuinfo())
def has_uefi() -> bool:
return os.path.isdir('/sys/firmware/efi')