Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwpolska authored Jun 28, 2024
1 parent 78afa5d commit f6450e0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions v8/misaka/misaka_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ def __init__(self, *args, **kwargs):
super(CompileMisaka, self).__init__(*args, **kwargs)
if misaka is not None:
self.ext = (
misaka.api.EXT_FENCED_CODE
| misaka.api.EXT_STRIKETHROUGH
| misaka.api.EXT_FOOTNOTES
| misaka.api.EXT_AUTOLINK
| misaka.api.EXT_NO_INTRA_EMPHASIS
| misaka.api.EXT_HIGHLIGHT
misaka.api.EXT_FENCED_CODE |
misaka.api.EXT_STRIKETHROUGH |
misaka.api.EXT_FOOTNOTES |
misaka.api.EXT_AUTOLINK |
misaka.api.EXT_NO_INTRA_EMPHASIS |
misaka.api.EXT_HIGHLIGHT
)

def compile_string(
Expand Down

0 comments on commit f6450e0

Please sign in to comment.