From 8ccb8b07444f4d81d943842a24d0cd7886c04712 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 31 May 2023 12:11:14 -0400 Subject: [PATCH] kucoin: drop shm-array `numpy` dtype def, our default is the same --- piker/brokers/kucoin.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/piker/brokers/kucoin.py b/piker/brokers/kucoin.py index 8cf06300..998ee3ed 100755 --- a/piker/brokers/kucoin.py +++ b/piker/brokers/kucoin.py @@ -71,17 +71,6 @@ from ._util import DataUnavailable log = get_logger(__name__) -_ohlc_dtype = [ - ('index', int), - ('time', int), - ('open', float), - ('high', float), - ('low', float), - ('close', float), - ('volume', float), - ('bar_wap', float), # will be zeroed by sampler if not filled -] - class KucoinMktPair(Struct, frozen=True): '''