Skip to content

Commit

Permalink
fix <3.8 compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
warittornc committed Dec 25, 2024
1 parent 9e863a5 commit f694414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyband/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f694414

Please sign in to comment.