Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: Ayush Rangwala <[email protected]>
  • Loading branch information
aayushrangwala committed Jan 17, 2024
1 parent fcd0b43 commit adf831d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions libcloud/compute/drivers/equinixmetal.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,7 @@ def create_volume(
):
"""
Create a new volume.
:param size: Size of volume in gigabytes (required)
:type size: ``int``
:param location: Which data center to create a volume in. If
Expand Down
2 changes: 1 addition & 1 deletion libcloud/test/compute/test_equinixmetal.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def test_destroy_volume(self):
class EquinixMetalMockHttp(MockHttp):
fixtures = ComputeFileFixtures("equinixmetal")

def _metal_v1_metros(self, method, url, body, headers):
def _metal_v1_locations_metros(self, method, url, body, headers):
body = self.fixtures.load("metros.json")
return (httplib.OK, body, {}, httplib.responses[httplib.OK])

Expand Down

0 comments on commit adf831d

Please sign in to comment.