Skip to content

Commit

Permalink
fix missed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
azuline committed Oct 26, 2023
1 parent b7df23f commit 1ab3bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rose/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -2020,4 +2020,4 @@ def _unpack(*xxs: str, delimiter: str = r" \\ ") -> Iterator[tuple[str, ...]]:
# empty string, so we specially exit if we hit that case.
if all(not xs for xs in xxs):
return
yield from zip(*[xs.split(r" \\ ") for xs in xxs])
yield from zip(*[xs.split(delimiter) for xs in xxs])

0 comments on commit 1ab3bc0

Please sign in to comment.