Skip to content

Commit

Permalink
Fix black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Feb 28, 2023
1 parent 6585b02 commit 4d1ce42
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/politician_data/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ def flatten_data():
str
)
alt_names_df = identifer_expansion(person_df, "other_names", "person_id")
person_df = person_df.drop(columns=["identifiers", "other_names", ])
person_df = person_df.drop(
columns=[
"identifiers",
"other_names",
]
)

posts = pd.DataFrame(pol_data["posts"]).sort_values("id")
post_identifiers = identifer_expansion(posts, "identifiers", "post_id")
Expand Down

0 comments on commit 4d1ce42

Please sign in to comment.