Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlodek committed Aug 2, 2024
1 parent da2514c commit 2a858e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cycler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ def _process_keys(
l_key: set[K] = set(l_peek.keys())
r_key: set[K] = set(r_peek.keys())
if common_keys := l_key & r_key:
raise ValueError(f"Cannot compose overlapping cycles, duplicate key(s): {common_keys}")
raise ValueError(
f"Cannot compose overlapping cycles, duplicate key(s): {common_keys}"
)

return l_key | r_key

Expand Down

0 comments on commit 2a858e4

Please sign in to comment.