From 3257af975aa3b6f186a33622d9588381a484a4c4 Mon Sep 17 00:00:00 2001 From: UpstreamData Date: Tue, 16 May 2023 13:21:39 -0600 Subject: [PATCH] bug: fix error with type hinting. --- pyasic/miners/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyasic/miners/base.py b/pyasic/miners/base.py index ce1e81a8..44fc288d 100644 --- a/pyasic/miners/base.py +++ b/pyasic/miners/base.py @@ -256,7 +256,7 @@ class BaseMiner(ABC): pass @abstractmethod - async def get_hashboards(self, *args, **kwargs) -> list[HashBoard]: + async def get_hashboards(self, *args, **kwargs) -> List[HashBoard]: """Get hashboard data from the miner in the form of [`HashBoard`][pyasic.data.HashBoard]. Returns: