Skip to content

Commit b1586fa

Browse files
committed
Black fix code
1 parent 6ccf11c commit b1586fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyterlite_sphinx/_try_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def _process_literal_blocks(md_text):
226226
indent_level = len(line) - len(line.lstrip())
227227

228228
if in_literal_block and (indent_level > 0 or line.strip() == ""):
229-
literal_block_accumulator.append(line.lstrip())
229+
literal_block_accumulator.append(line.lstrip())
230230
elif in_literal_block:
231231
new_lines.extend(["```"] + literal_block_accumulator + ["```"])
232232
literal_block_accumulator = []

0 commit comments

Comments
 (0)