We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 077d265 commit 6197cf4Copy full SHA for 6197cf4
.github/workflows/python-tests.yml
@@ -11,7 +11,7 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- python-version: [3.8, 3.9, 3.10]
+ python-version: ["3.8", "3.9", "3.10"]
15
16
steps:
17
- uses: actions/checkout@v3
unix/src/machine_stats/modules/cpu_utilization.py
@@ -32,7 +32,7 @@ def run_module():
32
# if the user is working with this module in only check mode we do not
33
# want to make any changes to the environment, just return the current
34
# state with no modifications
35
- if module.params["timeout"] == 0 or module.check_mode:
+ if module.params["timeout"] == 0 or module.check_mode:
36
return module.exit_json(**result)
37
38
# get CPU utilization values
0 commit comments