Add missing module

This commit is contained in:
hroff-1902 2020-05-16 17:15:58 +03:00
parent e7c11ed2cf
commit 5f2a871637
1 changed files with 7 additions and 0 deletions

7
freqtrade/data/common.py Normal file
View File

@ -0,0 +1,7 @@
"""
Common datatypes
"""
from typing import List, Tuple
# List of pairs with their timeframes
ListPairsWithTimeframes = List[Tuple[str, str]]