Skip to content

Commit db4df61

Browse files
Fix missing newline at end of file in harmonise.pyImprove Benchmarking Report Generation Speed - Optimize Polars Pipeline Performance
Fixes #507
1 parent 256aa6b commit db4df61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

digital_land/phase_polars/transform/harmonise.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,4 +1029,4 @@ def _get_far_future_date(number_of_years_ahead: int) -> date:
10291029
y = today.year + number_of_years_ahead
10301030
last_day = monthrange(y, today.month)[1]
10311031
day = min(today.day, last_day)
1032-
return today.replace(year=y, day=day)
1032+
return today.replace(year=y, day=day)

0 commit comments

Comments
 (0)