From ec5ea51b82f496cd59466a7f8edec3222e3de10e Mon Sep 17 00:00:00 2001 From: allmightyspiff Date: Wed, 29 Aug 2018 17:16:38 -0500 Subject: [PATCH] fixed some style errors --- SoftLayer/managers/dedicated_host.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SoftLayer/managers/dedicated_host.py b/SoftLayer/managers/dedicated_host.py index 6d3b6bb9d..e041e8d74 100644 --- a/SoftLayer/managers/dedicated_host.py +++ b/SoftLayer/managers/dedicated_host.py @@ -349,13 +349,13 @@ def _get_backend_router(self, locations, item): if location['locationId'] is not None: loc_id = location['locationId'] host = { - 'cpuCount': cpu_count, - 'memoryCapacity': mem_capacity, - 'diskCapacity': disk_capacity, - 'datacenter': { - 'id': loc_id - } + 'cpuCount': cpu_count, + 'memoryCapacity': mem_capacity, + 'diskCapacity': disk_capacity, + 'datacenter': { + 'id': loc_id } + } if item['keyName'].find("GPU") != -1: host['pciDevices'] = gpuComponents routers = self.host.getAvailableRouters(host, mask=mask)