From 712e5d4a70aa02ab10af75abcaefd5729f14eb7d Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 6 Sep 2021 17:15:40 +0200 Subject: Fix indentation with tabs instead of spaces --- archinstall/lib/hardware.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archinstall/lib/hardware.py') diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py index 56444eeb..24a6a983 100644 --- a/archinstall/lib/hardware.py +++ b/archinstall/lib/hardware.py @@ -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') -- cgit v1.2.3-54-g00ecf