apply correct typehint
This commit is contained in:
parent
95a17b8f98
commit
b82c4444b2
@ -1,7 +1,7 @@
|
|||||||
import enum
|
import enum
|
||||||
import logging
|
import logging
|
||||||
from random import randint
|
from random import randint
|
||||||
from typing import List, Dict
|
from typing import List, Dict, Any
|
||||||
|
|
||||||
import arrow
|
import arrow
|
||||||
|
|
||||||
@ -15,7 +15,7 @@ _API: Exchange = None
|
|||||||
_CONF: dict = {}
|
_CONF: dict = {}
|
||||||
|
|
||||||
# Holds all open sell orders for dry_run
|
# Holds all open sell orders for dry_run
|
||||||
_DRY_RUN_OPEN_ORDERS: Dict[str, Dict] = {}
|
_DRY_RUN_OPEN_ORDERS: Dict[str, Any] = {}
|
||||||
|
|
||||||
|
|
||||||
class Exchanges(enum.Enum):
|
class Exchanges(enum.Enum):
|
||||||
|
Loading…
Reference in New Issue
Block a user