Skip to content

Commit 7fe850c

Browse files
committed
Drop try/except.
1 parent 21176c6 commit 7fe850c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

cubids/cubids.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,14 +1256,12 @@ def get_param_groups_dataframes(self):
12561256
labeled_files = []
12571257
param_group_summaries = []
12581258
for entity_set in entity_sets:
1259-
try:
1260-
(
1261-
labeled_file_params,
1262-
param_summary,
1263-
modality,
1264-
) = self.get_param_groups_from_entity_set(entity_set)
1265-
except Exception:
1266-
continue
1259+
(
1260+
labeled_file_params,
1261+
param_summary,
1262+
modality,
1263+
) = self.get_param_groups_from_entity_set(entity_set)
1264+
12671265
if labeled_file_params is None:
12681266
continue
12691267
param_group_summaries.append(param_summary)

0 commit comments

Comments
 (0)