Skip to content
Snippets Groups Projects
Commit 045cf7fd authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

moved error values of travel time from nothing to missing

parent e59800a4
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ function travel_time_in_minutes(ws_host_port::String, selection::Dict)
travel_time = travel_time_seconds / 60
catch e
println("Error during HTTP request or response parsing: ", e)
travel_time = nothing # Use `nothing` to represent null in Julia
travel_time = missing # Use `missing` to represent null in Julia
end
# Populate the columns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment