We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 177e32b commit ef23825Copy full SHA for ef23825
1 file changed
OMPython/modelica_system_abc.py
@@ -1045,7 +1045,7 @@ def setInputs(
1045
try:
1046
val_evaluated_checked.append((float(item[0]), float(item[1])))
1047
except ValueError as exc:
1048
- raise ModelicaSystemError("All elements of the input for setInput() should be convertable to "
+ raise ModelicaSystemError("All elements of the input for setInput() should be convertible to "
1049
"type Tuple[float, float] - "
1050
f"found [{repr(item[0])}, {repr(item[1])}] with types "
1051
f"[{type(item[0])}, {type(item[1])}]!") from exc
0 commit comments