Skip to content

Commit 702f61e

Browse files
authored
Merge pull request #100 from jwlodek/more-verbose-error-msg
[ENH] Update error message printed on overlapping cycles to be more verbose
2 parents 6499cca + 2a858e4 commit 702f61e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

cycler/__init__.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,11 @@ def _process_keys(
8181
r_peek: dict[K, V] = next(iter(right)) if right is not None else {}
8282
l_key: set[K] = set(l_peek.keys())
8383
r_key: set[K] = set(r_peek.keys())
84-
if l_key & r_key:
85-
raise ValueError("Can not compose overlapping cycles")
84+
if common_keys := l_key & r_key:
85+
raise ValueError(
86+
f"Cannot compose overlapping cycles, duplicate key(s): {common_keys}"
87+
)
88+
8689
return l_key | r_key
8790

8891

0 commit comments

Comments
 (0)