Skip to content

Commit 6d5b79e

Browse files
committed
chore: fix lints
1 parent 077d265 commit 6d5b79e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)