Fix small bug in bfxapi/websocket/typings.py file.

This commit is contained in:
Davide Casale
2022-11-10 12:27:35 +01:00
parent 54542ac23b
commit 2c70d299b3

View File

@@ -1,4 +1,4 @@
from typing import TypedDict, Optional
from typing import TypedDict, List, Optional
class BalanceUpdateStream(TypedDict):
AUM: float
@@ -13,4 +13,4 @@ class WalletUpdateStream(TypedDict):
DESCRIPTION: str
META: dict
WalletSnapshotStream = list[WalletUpdateStream]
WalletSnapshotStream = List[WalletUpdateStream]