Skip to content

Commit 9ab17e4

Browse files
committed
fix(#66): resolve deprecation warning on zip
1 parent 3365e1c commit 9ab17e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mdformat_mkdocs/_normalize_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def parse_text(
432432
if use_sem_break:
433433
semantic_indents = map_lookback(
434434
_parse_semantic_indent,
435-
[*zip(lines, code_indents)],
435+
[*zip(lines, code_indents, strict=True)],
436436
_parse_semantic_indent(SemanticIndent.INITIAL, (lines[0], code_indents[0])),
437437
)
438438
new_indents = [

0 commit comments

Comments
 (0)