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.
1 parent 7af2dcf commit 1f8ece3Copy full SHA for 1f8ece3
Funz/inst/Funz/Funz.py
@@ -856,10 +856,12 @@ def Funz_Run_results(runshell, out_filter):
856
"state","duration","calc"
857
])
858
results = _JMapToPMap(jresults, out_filter)
859
- for io in _Funz_Last_run['output_expressions']+list(_Funz_Last_run['input_variables']):# Try to cast I/O values to R numeric
860
- try:
861
- results[io] = numpy.float_(results[io])
862
- except: pass
+ ios = _Funz_Last_run['output_expressions']+list(_Funz_Last_run['input_variables'])
+ if not ios is None:
+ for io in ios:# Try to cast I/O values to R numeric
+ try:
863
+ results[io] = numpy.float_(results[io])
864
+ except: pass
865
_Funz_Last_run['results'] = results
866
867
return(results)
0 commit comments