Skip to content

Commit e7df9ed

Browse files
committed
Fix black
1 parent 0728392 commit e7df9ed

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

libcloud/compute/drivers/openstack.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4487,7 +4487,9 @@ def __init__(self, id, name, start, end, status, reservations, driver):
44874487
self.driver = driver
44884488

44894489
def __repr__(self):
4490-
return "<OpenStack_2_Lease: id={}, name={}, status={}>".format(self.id, self.name, self.status)
4490+
return "<OpenStack_2_Lease: id={}, name={}, status={}>".format(
4491+
self.id, self.name, self.status
4492+
)
44914493

44924494

44934495
class OpenStack_1_1_FloatingIpPool:

libcloud/test/compute/test_openstack.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4047,6 +4047,7 @@ def _v1_os_hosts(self, method, url, body, headers):
40474047
httplib.responses[httplib.OK],
40484048
)
40494049

4050+
40504051
# This exists because the nova compute url in devstack has v2 in there but the v1.1 fixtures
40514052
# work fine.
40524053

0 commit comments

Comments
 (0)