Skip to content

Commit 243e416

Browse files
committed
fix: Properly pass the url argument
1 parent a8edfe2 commit 243e416

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exoscale/api/v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def _sleep(start_time):
9999

100100
class Client(BaseClient):
101101
def __init__(self, key, secret, *args, url=None, **kwargs):
102-
super().__init__(*args, **kwargs)
102+
super().__init__(*args, url=url, **kwargs)
103103
self.WAIT_ABORT_ERRORS_COUNT = 5
104104

105105
client = requests.Session()

0 commit comments

Comments
 (0)