stable/freqtrade/data/common.py
2020-05-16 17:15:58 +03:00

8 lines
143 B
Python

"""
Common datatypes
"""
from typing import List, Tuple
# List of pairs with their timeframes
ListPairsWithTimeframes = List[Tuple[str, str]]