Skip to content

Commit 022ff97

Browse files
authored
typo fixed in async_client_base.py
1 parent 0fd806a commit 022ff97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kucoin/async_client_base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async def _request(
5454
kwargs["headers"] = kwargs.get("headers", {})
5555

5656
full_path = self._create_path(path, api_version)
57-
uri = self._create_uri(full_path, is_futures)
57+
url = self._create_url(full_path, is_futures)
5858

5959
if signed:
6060
# generate signature
@@ -75,7 +75,7 @@ async def _request(
7575
del kwargs["data"]
7676

7777
async with getattr(self.session, method)(
78-
uri,
78+
url,
7979
**kwargs,
8080
) as response:
8181
self.response = response

0 commit comments

Comments
 (0)