We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6499cca + 2a858e4 commit 702f61eCopy full SHA for 702f61e
cycler/__init__.py
@@ -81,8 +81,11 @@ def _process_keys(
81
r_peek: dict[K, V] = next(iter(right)) if right is not None else {}
82
l_key: set[K] = set(l_peek.keys())
83
r_key: set[K] = set(r_peek.keys())
84
- if l_key & r_key:
85
- raise ValueError("Can not compose overlapping cycles")
+ if common_keys := l_key & r_key:
+ raise ValueError(
86
+ f"Cannot compose overlapping cycles, duplicate key(s): {common_keys}"
87
+ )
88
+
89
return l_key | r_key
90
91
0 commit comments