We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6499cca commit 555b8bdCopy full SHA for 555b8bd
cycler/__init__.py
@@ -82,7 +82,8 @@ def _process_keys(
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")
+ raise ValueError(f"Cannot compose overlapping cycles, duplicate key(s): {l_key & r_key}")
86
+
87
return l_key | r_key
88
89
0 commit comments