Skip to content

Commit 5da694e

Browse files
committed
adding formatting
1 parent 2cc476b commit 5da694e

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

profitbricks/client.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,15 +1076,15 @@ def get_location(self, location_id, depth=0):
10761076
:type location_id: ``str``
10771077
10781078
"""
1079-
response = self._perform_request('/locations/%s?depth=%s' % (location_id,depth))
1079+
response = self._perform_request('/locations/%s?depth=%s' % (location_id, depth))
10801080
return response
10811081

10821082
def list_locations(self, depth=0):
10831083
"""
10841084
Retrieves a list of locations available in the account.
10851085
10861086
"""
1087-
response = self._perform_request('/locations?depth=%s'% (depth))
1087+
response = self._perform_request('/locations?depth=%s' % (depth))
10881088

10891089
return response
10901090

@@ -2153,8 +2153,7 @@ def delete_volume(self, datacenter_id, volume_id):
21532153

21542154
return response
21552155

2156-
def create_vol
2157-
ume(self, datacenter_id, volume):
2156+
def create_volume(self, datacenter_id, volume):
21582157
"""
21592158
Creates a volume within the specified data center.
21602159

0 commit comments

Comments
 (0)