Skip to content

Commit

Permalink
Removed deperecated Panadas append function call
Browse files Browse the repository at this point in the history
  • Loading branch information
gbg3 committed Sep 25, 2024
1 parent ec03890 commit d9b73fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion owner_report_native.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ def write_to_bigquery(data):


#print(json.dumps(projects_by_user))
df = df.append(other=entries)
#df = df.append(other=entries)
df = pd.concat(entries)

# get rid of the .'s in the column names created by json_normalize
df.columns = df.columns.str.replace(r".", "_")
Expand Down

0 comments on commit d9b73fb

Please sign in to comment.