You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
wss.subscribe_to_candles('BTCUSD', '1m')
leads to defaultdict(<class 'queue.Queue'>, {('candles', 'BTCUSD'): <queue.Queue object at 0x000002749A73E208>})
calling wss.candles('BTCUSD', '1m')
leads to a key of ('candles', 'BTCUSD', '1m')
which does not match the queue's key...
The text was updated successfully, but these errors were encountered:
wss.subscribe_to_candles('BTCUSD', '1m')
leads to
defaultdict(<class 'queue.Queue'>, {('candles', 'BTCUSD'): <queue.Queue object at 0x000002749A73E208>})
calling
wss.candles('BTCUSD', '1m')
leads to a key of
('candles', 'BTCUSD', '1m')
which does not match the queue's key...
The text was updated successfully, but these errors were encountered: