Skip to content

Commit

Permalink
Reformat code with black.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kami committed Oct 28, 2023
1 parent 21f1f3c commit dfbb595
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libcloud/compute/drivers/azure_arm.py
Original file line number Diff line number Diff line change
Expand Up @@ -2197,8 +2197,7 @@ def ex_resize_node(self, node, size):
target = "%s/resize" % node.id
data = {"size": size.id}
r = self.connection.request(
target, params={"api-version": VM_API_VERSION}, data=data,
method="POST"
target, params={"api-version": VM_API_VERSION}, data=data, method="POST"
)
return r.object

Expand Down

0 comments on commit dfbb595

Please sign in to comment.