Skip to content

Commit 6197cf4

Browse files
committed
chore: fix lints
1 parent 077d265 commit 6197cf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.8, 3.9, 3.10]
14+
python-version: ["3.8", "3.9", "3.10"]
1515

1616
steps:
1717
- uses: actions/checkout@v3

unix/src/machine_stats/modules/cpu_utilization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def run_module():
3232
# if the user is working with this module in only check mode we do not
3333
# want to make any changes to the environment, just return the current
3434
# state with no modifications
35-
if module.params["timeout"] == 0 or module.check_mode:
35+
if module.params["timeout"] == 0 or module.check_mode:
3636
return module.exit_json(**result)
3737

3838
# get CPU utilization values

0 commit comments

Comments
 (0)