Closed rometsch closed 6 months ago
There is a bug in the 1D loader. Calling Loader(outdir).gas.vars1D.get(...) results in an error because the get function tries to call the member function average, but this is called avg instead.
Loader(outdir).gas.vars1D.get(...)
get
average
avg
There is a bug in the 1D loader. Calling
Loader(outdir).gas.vars1D.get(...)
results in an error because theget
function tries to call the member functionaverage
, but this is calledavg
instead.