From 1ab3bc0e7be5c8bf56c868b86ccb4aa7aaeea629 Mon Sep 17 00:00:00 2001 From: blissful Date: Thu, 26 Oct 2023 14:33:24 -0400 Subject: [PATCH] fix missed lint --- rose/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rose/cache.py b/rose/cache.py index 8abb9d0..e054112 100644 --- a/rose/cache.py +++ b/rose/cache.py @@ -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])