apply correct typehint

This commit is contained in:
gcarq 2017-11-05 16:12:58 +01:00
parent 95a17b8f98
commit b82c4444b2

View File

@ -1,7 +1,7 @@
import enum
import logging
from random import randint
from typing import List, Dict
from typing import List, Dict, Any
import arrow
@ -15,7 +15,7 @@ _API: Exchange = None
_CONF: dict = {}
# 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):