give type hint for _CONF

This commit is contained in:
Janne Sinivirta 2018-01-26 18:49:14 +02:00
parent 5505845c6f
commit 42919e8864

View File

@ -6,7 +6,7 @@ import sys
import time
import traceback
from datetime import datetime
from typing import Dict, List, Optional
from typing import Dict, List, Optional, Any
import arrow
import requests
@ -23,7 +23,7 @@ from freqtrade.strategy.strategy import Strategy
logger = logging.getLogger('freqtrade')
_CONF = {}
_CONF: Dict[str, Any] = {}
def refresh_whitelist(whitelist: List[str]) -> List[str]: