Skip to content

Commit 60e4d9f

Browse files
author
John Duarte
committed
MAINT - Update to comply with flake8 W504
This commit updates code that was styled to comply with [flake8 rule W503](https://lintlyci.github.io/Flake8Rules/rules/W503.html) to comply with [W504](PyCQA/pycodestyle#498) instead.
1 parent fe4f502 commit 60e4d9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

molecule/default/tests/test_hypervisor_free.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def test_hypervisor_free(host):
7070
assert "vcpus" in stats
7171
assert "vcpus_used" in stats
7272
assert "free_disk_gb" in stats
73-
assert ((stats['memory_mb']) * ram_ratio -
74-
(stats['memory_mb_used'])) / 1024 > 0
73+
assert ((stats['memory_mb']) * ram_ratio
74+
- (stats['memory_mb_used'])) / 1024 > 0
7575
assert (stats['vcpus'] * cpu_ratio - stats['vcpus_used']) > 0
7676
assert (stats['free_disk_gb'] * disk_ratio) > 0

0 commit comments

Comments
 (0)