Skip to content

Commit 9f4a326

Browse files
Merge pull request #89 from holgerteichgraeber/CSV
Deprecation warning in CSV.jl: allowmissing -> strict
2 parents aa493af + e09e8a9 commit 9f4a326

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)