We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62005f5 commit aa0d3a3Copy full SHA for aa0d3a3
utils/virtual_machine/virtual_machines.py
@@ -242,8 +242,10 @@ def load_virtual_machines(provider_id):
242
if (
243
(provider_id == "vagrant" and vm_data["vagrant_config"] is not None)
244
or (provider_id == "krunvm" and vm_data["krunvm_config"] is not None)
245
- or ((provider_id == "aws" and vm_data["aws_config"] is not None)
246
- and ("disabled" in vm_data and vm_data["disabled"] != "true"))
+ or (
+ (provider_id == "aws" and vm_data["aws_config"] is not None)
247
+ and ("disabled" in vm_data and vm_data["disabled"] != "true")
248
+ )
249
):
250
aws_config = None
251
vagrant_config = None
0 commit comments