Skip to content

Commit

Permalink
actually fix timestep -> timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
joshday committed Jul 19, 2023
1 parent 13e8715 commit da29787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SimulationService.jl
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ function get_dataset(obj::JSON3.Object)
@info "`get_dataset` (dataset id=$(repr(obj.id))) rename! $k => $v"
rename!(df, k => v)
end
"timestep" in names(df) && rename!(df, "timestep" => "timestep") # hack to get df in our "schema"
"timestep" in names(df) && rename!(df, "timestep" => "timestamp") # hack to get df in our "schema"
@info "get_dataset (id=$(repr(obj.id))) with names: $(names(df))"
return df
end
Expand Down

0 comments on commit da29787

Please sign in to comment.