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 33c0dd6 commit 0f534e1Copy full SHA for 0f534e1
modelskill/matching.py
@@ -258,7 +258,9 @@ def match(
258
if isinstance(obs, Collection):
259
assert all(isinstance(o, get_args(ObsInputType)) for o in obs)
260
else:
261
- raise TypeError(f"Obs is not the correct type: it is {type(obs)}. Check the order of the arguments (obs, mod).")
+ raise TypeError(
262
+ f"Obs is not the correct type: it is {type(obs)}. Check the order of the arguments (obs, mod)."
263
+ )
264
265
if len(obs) > 1 and isinstance(mod, Collection) and len(mod) > 1:
266
if not all(isinstance(m, (DfsuModelResult, GridModelResult)) for m in mod):
0 commit comments