Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Mar 1, 2024
1 parent a42c856 commit b474983
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/soi_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def pull_soi_data():
# drop one repeated minor ind code in crosswalk
soi_bea_ind_codes.drop_duplicates(subset=["minor_code_alt"], inplace=True)
soi_data["tax_treat"] = "non-corporate"
soi_data.loc[
soi_data["entity_type"] == "c_corp", "tax_treat"
] = "corporate"
soi_data.loc[soi_data["entity_type"] == "c_corp", "tax_treat"] = (
"corporate"
)
soi_data.loc[
(soi_data["entity_type"] == "partnership")
& (soi_data["part_type"] == "Corporate general partners"),
Expand Down

0 comments on commit b474983

Please sign in to comment.