Skip to content

Commit 1bbdbec

Browse files
authored
Merge branch 'main' into dependabot/pip/pyyaml-approx-eq-6.0.3
2 parents 78fb407 + ce7b2af commit 1bbdbec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v3
59+
uses: github/codeql-action/autobuild@v4
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,6 +69,6 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v3
72+
uses: github/codeql-action/analyze@v4
7373
with:
7474
category: "/language:${{matrix.language}}"
-77 KB
Binary file not shown.

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)