From c0a6e4be4894a00f4ce347a99af872d728d6f4b3 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 4 Sep 2019 22:51:00 +0100 Subject: [PATCH] trivial: Use sane indent (it won't break 'git-blame -M') Change-Id: Ifa7a3d7142ffc7c953d06bb2c7191a4dacb53713 Signed-off-by: Stephen Finucane --- nova/virt/ironic/driver.py | 39 +++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/nova/virt/ironic/driver.py b/nova/virt/ironic/driver.py index 358fb1a148ca..75aca89e9bd7 100644 --- a/nova/virt/ironic/driver.py +++ b/nova/virt/ironic/driver.py @@ -156,26 +156,27 @@ def _check_peer_list(): class IronicDriver(virt_driver.ComputeDriver): """Hypervisor driver for Ironic - bare metal provisioning.""" - capabilities = {"has_imagecache": False, - "supports_evacuate": False, - "supports_migrate_to_same_host": False, - "supports_attach_interface": True, - "supports_multiattach": False, - "supports_trusted_certs": False, - "supports_pcpus": False, + capabilities = { + "has_imagecache": False, + "supports_evacuate": False, + "supports_migrate_to_same_host": False, + "supports_attach_interface": True, + "supports_multiattach": False, + "supports_trusted_certs": False, + "supports_pcpus": False, - # Image type support flags - "supports_image_type_aki": False, - "supports_image_type_ami": False, - "supports_image_type_ari": False, - "supports_image_type_iso": False, - "supports_image_type_qcow2": True, - "supports_image_type_raw": True, - "supports_image_type_vdi": False, - "supports_image_type_vhd": False, - "supports_image_type_vhdx": False, - "supports_image_type_vmdk": False, - } + # Image type support flags + "supports_image_type_aki": False, + "supports_image_type_ami": False, + "supports_image_type_ari": False, + "supports_image_type_iso": False, + "supports_image_type_qcow2": True, + "supports_image_type_raw": True, + "supports_image_type_vdi": False, + "supports_image_type_vhd": False, + "supports_image_type_vhdx": False, + "supports_image_type_vmdk": False, + } # This driver is capable of rebalancing nodes between computes. rebalances_nodes = True