Skip to content

Commit

Permalink
fix pandas usage
Browse files Browse the repository at this point in the history
  • Loading branch information
simeonreusch committed May 23, 2023
1 parent bd43cbd commit 3f771a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nuztf/base_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def create_overview_table(self):
else:
data["kilonova_score"].append(None)

df = pandas.DataFrame.from_dict(data)
df = pd.DataFrame.from_dict(data)

df.to_csv(csv_path)

Expand Down

0 comments on commit 3f771a5

Please sign in to comment.