From f694414e39886ad2eb0dcc2c017b399aa916a4ae Mon Sep 17 00:00:00 2001 From: Warittorn Cheevachaipimol Date: Wed, 25 Dec 2024 11:43:01 +0700 Subject: [PATCH] fix <3.8 compatibility issue --- pyband/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyband/client.py b/pyband/client.py index 87cc7cb..f02118e 100644 --- a/pyband/client.py +++ b/pyband/client.py @@ -416,7 +416,7 @@ async def get_feed_price(self, signal_id: str) -> QueryPriceResponse: return await self.feeds_query_stub.price(QueryPriceRequest(signal_id=signal_id)) - async def get_feed_prices(self, signal_ids: list[str]) -> QueryPricesResponse: + async def get_feed_prices(self, signal_ids: List[str]) -> QueryPricesResponse: """Gets the prices the signal_ids. Args: