From e01046e451738876e0dacbd69f97b8b6716c2db4 Mon Sep 17 00:00:00 2001 From: lichaolishan <108339812+lichaolishan@users.noreply.github.com> Date: Wed, 20 Nov 2024 11:08:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=87=8D=E5=A4=8D=E7=9A=84?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- polosdk/spot/rest/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polosdk/spot/rest/client.py b/polosdk/spot/rest/client.py index 961465e..674ede3 100644 --- a/polosdk/spot/rest/client.py +++ b/polosdk/spot/rest/client.py @@ -29,7 +29,7 @@ def __init__(self, api_key=None, api_secret=None, url=None): url (str, optional): Url for endpoints, default is set to PROD in Request class. """ self._accounts = Accounts(api_key, api_secret, url) - self._accounts = Subaccounts(api_key, api_secret, url) + self._subaccounts = Subaccounts(api_key, api_secret, url) self._markets = Markets(url) self._request = Request(url=url) self._orders = Orders(api_key, api_secret, url)