From d60642720adffa7c1602a6655a259d84d8dbe38c Mon Sep 17 00:00:00 2001 From: Ben <54753989+R1D3R175@users.noreply.github.com> Date: Sat, 12 Nov 2022 06:23:45 +0100 Subject: [PATCH] Fixed bug where turbo boost will always be on in performance mode (#455) * Fixed bug where Turbo Boost is always on in performance mode * Removed debugging prints * Added new line at EOF --- auto_cpufreq/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_cpufreq/core.py b/auto_cpufreq/core.py index 8943ccf..1ef17ef 100644 --- a/auto_cpufreq/core.py +++ b/auto_cpufreq/core.py @@ -833,7 +833,7 @@ def set_performance(): elif auto == "never": print("Configuration file disables turbo boost") print("setting turbo boost: off") - turbo(True) + turbo(False) else: if ( psutil.cpu_percent(percpu=False, interval=0.01) >= 20.0