Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
yannrichet-irsn authored Dec 2, 2024
1 parent a627e32 commit ec176b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Funz/inst/Funz/Funz.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ def Funz_CompileInput(model,input_files,input_values,output_dir=".") :
JMapinput_values = _jclassLinkedHashMap()
for key in input_values.keys():
vals = input_values[key]
if isinstance(vals,numpy.array): # convert to standard python arrays
if isinstance(vals,numpy.ndarray): # convert to standard python arrays
vals = vals.tolist()
if isinstance(vals,list):
if len(vals)>0:
Expand Down

0 comments on commit ec176b5

Please sign in to comment.