mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
Fix small bug in bfxapi/websocket/typings.py file.
This commit is contained in:
@@ -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]
|
||||
Reference in New Issue
Block a user