stable/freqtrade/data/common.py

8 lines
143 B
Python
Raw Normal View History

2020-05-16 14:15:58 +00:00
"""
Common datatypes
"""
from typing import List, Tuple
# List of pairs with their timeframes
ListPairsWithTimeframes = List[Tuple[str, str]]