From 2c70d299b3d517574006c817c21b29f2ad6eccbe Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Thu, 10 Nov 2022 12:27:35 +0100 Subject: [PATCH] Fix small bug in bfxapi/websocket/typings.py file. --- bfxapi/websocket/typings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bfxapi/websocket/typings.py b/bfxapi/websocket/typings.py index f1e39ec..f49c22c 100644 --- a/bfxapi/websocket/typings.py +++ b/bfxapi/websocket/typings.py @@ -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] \ No newline at end of file +WalletSnapshotStream = List[WalletUpdateStream] \ No newline at end of file