Don't cache pairs in _get_pairs call

small_kucoin_fixes
jaredgoldman 2023-04-03 20:28:52 -04:00
parent 5a0d29c774
commit ea21656624
1 changed files with 0 additions and 3 deletions

View File

@ -268,9 +268,6 @@ class Client:
async def _get_pairs(
self,
) -> dict[str, KucoinMktPair]:
if self._pairs:
return self._pairs
entries = await self._request('GET', '/symbols')
syms = {item['name']: KucoinMktPair(**item) for item in entries}