Skip to content

Commit 0f534e1

Browse files
committed
ruff format
1 parent 33c0dd6 commit 0f534e1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modelskill/matching.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,9 @@ def match(
258258
if isinstance(obs, Collection):
259259
assert all(isinstance(o, get_args(ObsInputType)) for o in obs)
260260
else:
261-
raise TypeError(f"Obs is not the correct type: it is {type(obs)}. Check the order of the arguments (obs, mod).")
261+
raise TypeError(
262+
f"Obs is not the correct type: it is {type(obs)}. Check the order of the arguments (obs, mod)."
263+
)
262264

263265
if len(obs) > 1 and isinstance(mod, Collection) and len(mod) > 1:
264266
if not all(isinstance(m, (DfsuModelResult, GridModelResult)) for m in mod):

0 commit comments

Comments
 (0)