Skip to content

Commit

Permalink
chore(formatting): Fixed formatting mistakes (#1378)
Browse files Browse the repository at this point in the history
fixed formatting mistakes have sneaked into prod

Co-authored-by: CommanderStorm <26258709+CommanderStorm@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and CommanderStorm committed Jul 29, 2024
1 parent e99bbfd commit 88b6887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/processors/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def export_for_status() -> None:
with open("output/status_data.json", "w", encoding="utf-8") as file:
json.dump(export_json_data, file)

export_polars_data = [{'id': d["id"], 'hash': d["hash"]} for d in export_data]
export_polars_data = [{"id": d["id"], "hash": d["hash"]} for d in export_data]
df = pl.DataFrame(export_polars_data)
df.write_parquet("output/status_data.parquet", use_pyarrow=True, compression_level=22)

Expand Down

0 comments on commit 88b6887

Please sign in to comment.