Skip to content

Commit

Permalink
Fix bug causing 2021 to not be created
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Apr 18, 2024
1 parent 063fd8d commit f96c254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tax_microdata_benchmarking/create_flat_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ def summary_analytics(df):
year for year in range(2015, 2027) if year not in PRIORITY_YEARS
]
latest_weights = None
for target_year in PRIORITY_YEARS[2:] + REMAINING_YEARS:
for target_year in PRIORITY_YEARS + REMAINING_YEARS:
stacked_file = create_stacked_flat_file(target_year=target_year)
if target_year == 2021:
latest_weights = stacked_file.s006
Expand Down

0 comments on commit f96c254

Please sign in to comment.