store dataframe updated as tuple

This commit is contained in:
Matthias
2020-06-12 14:12:33 +02:00
parent fd97ad9b76
commit 9794914838
2 changed files with 12 additions and 11 deletions

View File

@@ -336,4 +336,5 @@ CANCEL_REASON = {
}
# List of pairs with their timeframes
ListPairsWithTimeframes = List[Tuple[str, str]]
PairWithTimeframe = Tuple[str, str]
ListPairsWithTimeframes = List[PairWithTimeframe]