Skip to content

Commit

Permalink
chore: Run ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 12, 2024
1 parent c77d959 commit df1a6c4
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions examples/integration/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,8 @@

import pandas as pd

fdp = pd.read_csv("fdp/budget-and-spend.csv")
ocds = pd.read_csv("financialProgress-extract.csv")

merged = pd.merge(
ocds,
fdp,
pd.read_csv("financialProgress-extract.csv").merge(
pd.read_csv("fdp/budget-and-spend.csv"),
how="left",
left_on=[
"classifications/Year",
Expand All @@ -34,6 +30,4 @@
"Team",
"Func",
],
)

merged.to_csv("budget-contracting-compared.csv", index=False)
).to_csv("budget-contracting-compared.csv", index=False)

0 comments on commit df1a6c4

Please sign in to comment.