Skip to content

Commit 78c2342

Browse files
committed
FIX: Guard consistently against exception set
1 parent 814767b commit 78c2342

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdcflows/utils/wrangler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def find_estimators(
374374
for collection in by_intent.values():
375375
try:
376376
e = fm.FieldmapEstimation(collection)
377-
except ValueError as err:
377+
except (ValueError, TypeError) as err:
378378
_log_debug_estimator_fail(
379379
logger, "unnamed PEPOLAR", collection, layout.root, str(err)
380380
)

0 commit comments

Comments
 (0)