Skip to content
Snippets Groups Projects
Commit 2057bf2e authored by Julian Stürmer's avatar Julian Stürmer
Browse files

Fix dictionary type for supply history

parent f1d4c7b9
No related branches found
No related tags found
No related merge requests found
Pipeline #553 passed
......@@ -277,8 +277,8 @@ function calc_secondary_dmg!(
### Save the time series (history) of supplied load
if save_supply_history == true
network_data["history"] = Dict{Int64,Dict{Int64,Tuple{Float64,String}}}(
f => Dict{Int64,Tuple{Float64,String}}() for f in dmg_frames
network_data["history"] = Dict(
f => Dict{Int64,Tuple{Float64,String,Array{Int64,1}}}() for f in dmg_frames
)
end
......
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