We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 211af7c + 35b437b commit 182a5b6Copy full SHA for 182a5b6
src/services/Serialization.jl
@@ -108,6 +108,9 @@ function unpackVariable(dfg::G,
108
dataElemTypes = JSON2.read(packedProps["bigDataElemType"], Dict{Symbol, Symbol})
109
else
110
dataElemTypes = JSON2.read(packedProps["dataEntryType"], Dict{Symbol, Symbol})
111
+ for (k,name) in dataElemTypes
112
+ dataElemTypes[k] = Symbol(split(string(name), '.')[end])
113
+ end
114
end
115
116
#TODO Deprecate - for backward compatibility between v0.8 and v0.9, remove in v0.10
0 commit comments