This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit dfbb5959739870313f4c47de499963a46a23010d Author: Tomaz Muraus <to...@tomaz.me> AuthorDate: Sat Oct 28 18:38:51 2023 +0200 Reformat code with black. --- libcloud/compute/drivers/azure_arm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libcloud/compute/drivers/azure_arm.py b/libcloud/compute/drivers/azure_arm.py index 9a5c96430..ab6557fa8 100644 --- a/libcloud/compute/drivers/azure_arm.py +++ b/libcloud/compute/drivers/azure_arm.py @@ -2197,8 +2197,7 @@ class AzureNodeDriver(NodeDriver): 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