From c7f80beb48b2008dda0d5a4d9e2e4246be5b2d19 Mon Sep 17 00:00:00 2001 From: Weitheng Haw Date: Wed, 13 Aug 2025 18:17:44 +0800 Subject: [PATCH] cleanup comments --- frigate/util/cpu_compatibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/util/cpu_compatibility.py b/frigate/util/cpu_compatibility.py index 2ae3bbe78..b3491328a 100644 --- a/frigate/util/cpu_compatibility.py +++ b/frigate/util/cpu_compatibility.py @@ -18,7 +18,7 @@ def check_cpu_has_avx() -> bool: bool: True if CPU has AVX support, False otherwise """ try: - # Try Linux method first (most common for Frigate) + # Try Linux method first if sys.platform.startswith("linux"): with open("/proc/cpuinfo", "r") as f: cpuinfo = f.read().lower()