Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Jan 17, 2025
1 parent fde57e2 commit 10ea1ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audformat/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ def join_labels(
if not isinstance(labels, list):
labels = list(labels)

if len(misc_table_ids := [x for x in labels if isinstance(x, str)]) > 1:
if misc_table_ids := [x for x in labels if isinstance(x, str)]:
raise ValueError(
f"The following string values were provided: '"
f"{misc_table_ids}'. "
Expand Down

0 comments on commit 10ea1ca

Please sign in to comment.