Fix RELOG.parsefile

This commit is contained in:
2025-11-14 10:13:59 -06:00
parent 5eee29547c
commit eedf023b47

View File

@@ -2,7 +2,7 @@ using JSON
using OrderedCollections using OrderedCollections
function parsefile(path::String)::Instance function parsefile(path::String)::Instance
return RELOG.parse(JSON.parsefile(path, dicttype = () -> OrderedDict())) return RELOG.parse(JSON.parsefile(path; dicttype = OrderedDict))
end end
function parse(json)::Instance function parse(json)::Instance