Skip to content

Commit 411f6e5

Browse files
committed
fix: [convert_markdown_to_pdf] E261 fixed
1 parent 4d01b86 commit 411f6e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

misp_modules/modules/expansion/convert_markdown_to_pdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def sanitize_ast(doc):
6161
for block in blocks:
6262
if isinstance(block, pandoc.types.RawBlock):
6363
args = getattr(block, "_args", [])
64-
if len(args) < 2: # Invalid RawBlock
64+
if len(args) < 2: # Invalid RawBlock
6565
continue
6666
fmt, text = args[0], args[1]
6767

0 commit comments

Comments
 (0)