File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change
1
+ from typing import Dict
1
2
from datetime import datetime
2
3
from random import randint
3
4
@@ -33,11 +34,11 @@ def orders(self, value):
33
34
self ._orders = value
34
35
35
36
@property
36
- def balances (self ) -> dict [str , float ]:
37
+ def balances (self ) -> Dict [str , float ]:
37
38
return self ._balances
38
39
39
40
@balances .setter
40
- def balances (self , value : dict [str , float ]):
41
+ def balances (self , value : Dict [str , float ]):
41
42
self ._balances = value
42
43
43
44
@property
@@ -150,7 +151,7 @@ def create_limit_sell_order(
150
151
trading_symbol = trading_symbol ,
151
152
)
152
153
153
- def get_balance (self , market ) -> dict [str , float ]:
154
+ def get_balance (self , market ) -> Dict [str , float ]:
154
155
return self ._balances
155
156
156
157
def get_order (self , order , market ):
You can’t perform that action at this time.
0 commit comments