Skip to content

Commit

Permalink
change to double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonfrailey committed Sep 13, 2023
1 parent 13c8851 commit f23af3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taxdata/puf/impute_pencon.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ def targets(year):
revised data specified here. Also, the top two wage groups (5u10M and
10u30M) are combined into a single group (5Mplus).
"""
cnt_df = pd.read_csv(Path(CURPATH, f'dcpentargetcnt{year}.csv'), index_col=0)
amt_df = pd.read_csv(Path(CURPATH, f'dcpentargetamt{year}.csv'), index_col=0)
cnt_df = pd.read_csv(Path(CURPATH, f"dcpentargetcnt{year}.csv"), index_col=0)
amt_df = pd.read_csv(Path(CURPATH, f"dcpentargetamt{year}.csv"), index_col=0)
return cnt_df, amt_df


Expand Down

0 comments on commit f23af3f

Please sign in to comment.