Skip to content

Commit

Permalink
Merge pull request #2813 from martinholmer/fix-tmd-ctor
Browse files Browse the repository at this point in the history
Fix Records.tmd_constructor logic
  • Loading branch information
martinholmer authored Sep 28, 2024
2 parents 4471479 + 08a1166 commit 76ccd83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion taxcalc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
from taxcalc.utils import *
from taxcalc.cli import *

__version__ = '4.2.2'
__version__ = '4.2.2a'
2 changes: 1 addition & 1 deletion taxcalc/records.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def tmd_constructor(
return Records(
data=pd.read_csv(data_path),
start_year=Records.TMDCSV_YEAR,
weights=str(weights_path),
weights=pd.read_csv(weights_path),
gfactors=GrowFactors(growfactors_filename=str(growfactors_path)),
adjust_ratios=None,
exact_calculations=exact_calculations,
Expand Down

0 comments on commit 76ccd83

Please sign in to comment.