Skip to content

Commit

Permalink
Remove volumes resource from list_resources_async method.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kami committed Apr 18, 2024
1 parent de32d7b commit fc48cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcloud/compute/drivers/equinixmetal.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def list_resources_async(self, resource_type):
# order to prevent a SyntaxError in Python2 due to "yield from".
# This cruft can be removed once Python2 support is no longer
# required.
assert resource_type in ["nodes", "volumes"]
assert resource_type in ["nodes"]
glob = globals()
loc = locals()
exec(
Expand Down

0 comments on commit fc48cac

Please sign in to comment.