mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
give type hint for _CONF
This commit is contained in:
parent
5505845c6f
commit
42919e8864
|
@ -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]:
|
||||
|
|
Loading…
Reference in New Issue
Block a user