Skip to content

Commit

Permalink
Fix: Extended start year to resolve date truncation.
Browse files Browse the repository at this point in the history
  • Loading branch information
nlarge-google committed Aug 16, 2022
1 parent a37c32d commit d7df35f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -87,7 +87,7 @@ def execute_pipeline(
data_dtypes: dict,
output_headers: typing.List[str],
) -> None:
for year_number in range(datetime.now().year, start_year, -1):
for year_number in range(datetime.now().year, (start_year - 1), -1):
process_year_data(
source_url=source_url,
year_number=int(year_number),
Expand Down

0 comments on commit d7df35f

Please sign in to comment.