Fix type for getting pairs

This commit is contained in:
Matthias 2021-02-11 20:29:31 +01:00
parent 843fb204e9
commit dd23f6bcbc
1 changed files with 2 additions and 1 deletions

View File

@ -776,7 +776,8 @@ class RPC:
})
return res
def _rpc_analysed_dataframe(self, pair: str, timeframe: str, limit: int) -> Dict[str, Any]:
def _rpc_analysed_dataframe(self, pair: str, timeframe: str,
limit: Optional[int]) -> Dict[str, Any]:
_data, last_analyzed = self._freqtrade.dataprovider.get_analyzed_dataframe(
pair, timeframe)