Skip to content

Commit d606427

Browse files
authored
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
1 parent 2ae8ed4 commit d606427

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auto_cpufreq/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ def set_performance():
833833
elif auto == "never":
834834
print("Configuration file disables turbo boost")
835835
print("setting turbo boost: off")
836-
turbo(True)
836+
turbo(False)
837837
else:
838838
if (
839839
psutil.cpu_percent(percpu=False, interval=0.01) >= 20.0

0 commit comments

Comments
 (0)