Skip to content

Commit

Permalink
Fix syntax warning
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Apr 5, 2024
1 parent e68e82a commit 3cd3afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/process_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def patch_jupyter(source, rl, toc, is_markdown):
yield c


_triple_backtick_re = re.compile('```(\S+)')
_triple_backtick_re = re.compile(r'```(\S+)')
def write_cell(cell, fh, strip_magic=False):
all_contents = []
def tb_sub(m):
Expand Down

0 comments on commit 3cd3afd

Please sign in to comment.