stable/freqtrade/typing.py

9 lines
150 B
Python
Raw Normal View History

2020-05-18 18:59:50 +00:00
"""
Common Freqtrade types
"""
from typing import List, Tuple
# List of pairs with their timeframes
ListPairsWithTimeframes = List[Tuple[str, str]]