Skip to content

Commit c5609b2

Browse files
authored
Hotfix: missing semicolon
1 parent 06a1642 commit c5609b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/sensors/sensors_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def sensors_fans():
9494
max_rpm = 3000 # AIO Pumps are usualy 3000 RPM
9595
elif current_rpm > 1500:
9696
max_rpm = 2200 # High speed fans are usualy 2200 RPM
97-
else
97+
else:
9898
max_rpm = 1500 # Approximated: max fan speed is 1500 RPM
9999

100100
try:

0 commit comments

Comments
 (0)