Skip to content

Commit e09e8a9

Browse files
committed
allowmissing -> strict
1 parent aa493af commit e09e8a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/load_data.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function add_timeseries_data!(dt::Dict{String,Array},
5353
T::Int=24,
5454
years::Array{Int,1}=[2016])
5555
#Load the data
56-
data_df=CSV.read(joinpath(data_path,data_name*".csv");allowmissing=:none)
56+
data_df=CSV.read(joinpath(data_path,data_name*".csv");strict=true)
5757
# Add it to the dictionary
5858
return add_timeseries_data!(dt,data_name, data_df; K=K, T=T, years=years)
5959
end

0 commit comments

Comments
 (0)