Skip to content

Commit

Permalink
fix: No longer need 1e9 multiple (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMcL authored Mar 22, 2023
1 parent b38646d commit 586c016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vega_sim/tools/scenario_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,6 @@ def load_fuzzing_df(
run_name = run_name if run_name is not None else DEFAULT_RUN_NAME
df = pd.read_csv(os.path.join(output_path, run_name, FUZZING_FILE_NAME))
if not df.empty:
df["time"] = pd.to_datetime(df.time * 1e9)
df["time"] = pd.to_datetime(df.time)
df = df.set_index("time")
return df

0 comments on commit 586c016

Please sign in to comment.