From 243e4164ace02ceac4a60d8d58993cedefdef8c8 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 6 Mar 2026 00:04:39 +0000 Subject: [PATCH] fix: Properly pass the url argument --- exoscale/api/v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exoscale/api/v2.py b/exoscale/api/v2.py index 76ae84d..033339e 100644 --- a/exoscale/api/v2.py +++ b/exoscale/api/v2.py @@ -99,7 +99,7 @@ def _sleep(start_time): class Client(BaseClient): def __init__(self, key, secret, *args, url=None, **kwargs): - super().__init__(*args, **kwargs) + super().__init__(*args, url=url, **kwargs) self.WAIT_ABORT_ERRORS_COUNT = 5 client = requests.Session()