We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fd806a commit 022ff97Copy full SHA for 022ff97
kucoin/async_client_base.py
@@ -54,7 +54,7 @@ async def _request(
54
kwargs["headers"] = kwargs.get("headers", {})
55
56
full_path = self._create_path(path, api_version)
57
- uri = self._create_uri(full_path, is_futures)
+ url = self._create_url(full_path, is_futures)
58
59
if signed:
60
# generate signature
@@ -75,7 +75,7 @@ async def _request(
75
del kwargs["data"]
76
77
async with getattr(self.session, method)(
78
- uri,
+ url,
79
**kwargs,
80
) as response:
81
self.response = response
0 commit comments