diff options
Diffstat (limited to 'date_calculator.py')
| -rw-r--r-- | date_calculator.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/date_calculator.py b/date_calculator.py index df13721..1920d30 100644 --- a/date_calculator.py +++ b/date_calculator.py @@ -11,9 +11,7 @@ class DateCalculator: # print(start) # print(launch) truncated_start = max(start, launch) - truncated_end = min(end, prediction) - if truncated_start <= end and truncated_start <= prediction: - considered_periods.append((truncated_start, truncated_end, id)) + considered_periods.append((truncated_start, end, id)) return considered_periods @staticmethod |
