Skip to content

Commit

Permalink
Fix Records.tmd_constructor logic
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholmer committed Sep 28, 2024
1 parent 4471479 commit 08a1166
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 08a1166

Please sign in to comment.