stable/freqtrade/typing.py
2020-05-18 21:59:50 +03:00

9 lines
150 B
Python

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