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 aa0d3a3 commit 2f52d82Copy full SHA for 2f52d82
utils/virtual_machine/virtual_machines.py
@@ -244,7 +244,7 @@ def load_virtual_machines(provider_id):
244
or (provider_id == "krunvm" and vm_data["krunvm_config"] is not None)
245
or (
246
(provider_id == "aws" and vm_data["aws_config"] is not None)
247
- and ("disabled" in vm_data and vm_data["disabled"] != "true")
+ and ("disabled" not in vm_data or vm_data["disabled"] != "true")
248
)
249
):
250
aws_config = None
0 commit comments