Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Fix bug in IOP Example-writer #6

Merged
merged 1 commit into from
Mar 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/HerbData.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ end
"""
Writes IO examples and the corresponding programs to disk by serializing them into a file using HDF5 checking for and appending the `.xiop`.
"""
function write_IOPexamples(filepath::AbstractString, examples::Vector{Tuple{Data.IOExample, Any}})
function write_IOPexamples(filepath::AbstractString, examples::Vector{Tuple{IOExample, Any}})
serialize(filepath * (endswith(filepath, ".xiop") ? "" : ".xiop"), examples)
end

Expand Down