From 5a0d29c774def0faa2033f8220ee285dfa27afd0 Mon Sep 17 00:00:00 2001 From: jaredgoldman Date: Mon, 3 Apr 2023 20:23:29 -0400 Subject: [PATCH] Add ws token api doc link --- piker/brokers/kucoin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/piker/brokers/kucoin.py b/piker/brokers/kucoin.py index f3aee52f..13d58974 100644 --- a/piker/brokers/kucoin.py +++ b/piker/brokers/kucoin.py @@ -248,7 +248,8 @@ class Client: async def _get_ws_token(self, private: bool = False) -> tuple[str, int] | None: ''' - Fetch ws token needed for sub access + Fetch ws token needed for sub access: + https://docs.kucoin.com/#apply-connect-token ''' token_type = 'private' if private else 'public'