Add docstring to TimeRange class

This commit is contained in:
xmatthias 2018-06-06 00:10:18 +02:00
parent f37c5b70ba
commit cac6e0d715
1 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,11 @@ from freqtrade import __version__, constants
class TimeRange(NamedTuple):
"""
NamedTuple Defining timerange inputs.
[start/stop]type defines if [start/stop]ts shall be used.
if *type is none, don't use corresponding startvalue.
"""
starttype: Optional[str] = None
stoptype: Optional[str] = None
startts: int = 0