Skip to content

Commit

Permalink
Fixed pylint issue with creole.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bcorfman committed Aug 29, 2023
1 parent cf7f7e2 commit 09b249c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsing/creole.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def _text_repl(self, groups):
if groups.get('break') and self.cur.kind in ('paragraph', 'emphasis', 'strong', 'code'):
DocNode('break', self.cur, '')
self.text = None
_break_repl = _text_repl
#_break_repl = _text_repl

def _table_repl(self, groups):
row = groups.get('table', '|').strip()
Expand Down

0 comments on commit 09b249c

Please sign in to comment.