diff --git a/jc/utils.py b/jc/utils.py index e6f2cbdc..3fc8df6f 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -402,6 +402,8 @@ def _lazy_splitlines(text: str) -> Iterable[str]: begin, end = m.span() if begin != start: yield text[start:begin] + else: + yield '' start = end if text[start:]: