Improve naming of apiserver variables

This commit is contained in:
Matthias
2021-07-10 11:19:23 +02:00
parent ad26b0dad0
commit 52ae95b2a5
3 changed files with 23 additions and 19 deletions

View File

@@ -35,9 +35,9 @@ class ApiServer(RPCHandler):
_rpc: RPC
# Backtesting type: Backtesting
_bt = None
_backtestdata = None
_bt_data = None
_bt_timerange = None
_lastbacktestconfig: Dict[str, Any] = {}
_bt_last_config: Dict[str, Any] = {}
_has_rpc: bool = False
_bgtask_running: bool = False
_config: Dict[str, Any] = {}