This commit is contained in:
Bobloy 2018-05-04 12:28:25 -04:00
parent 3e0773ee1e
commit 44602bc340
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ class StatementMixin(object):
This class has shared methods used to
normalize different statement models.
"""
tags = []
def get_tags(self):
"""

View File

@ -611,6 +611,7 @@ def date_from_duration(base_date, number_as_string, unit, duration, base_time=No
if base_time is not None:
base_date = date_from_adverb(base_date, base_time)
num = convert_string_to_number(number_as_string)
args = {}
if unit in day_variations:
args = {'days': num}
elif unit in minute_variations: