Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Artiom N committed Mar 16, 2023
1 parent 0c09f3c commit 4a7f7a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions markdown_toolset/article_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
from .transformers import TRANSFORMERS


IN_FORMATS_LIST = tuple(f.format for f in TRANSFORMERS if f is not None) # type: ignore
IN_FORMATS_LIST = tuple(*IN_FORMATS_LIST, *('+'.join(i) for i in permutations(IN_FORMATS_LIST))) # type: ignore
IN_FORMATS_LIST = [f.format for f in TRANSFORMERS if f is not None] # type: ignore
IN_FORMATS_LIST = [*IN_FORMATS_LIST, *('+'.join(i) for i in permutations(IN_FORMATS_LIST))] # type: ignore
OUT_FORMATS_LIST = [f.format for f in FORMATTERS if f is not None] # type: ignore


Expand Down

0 comments on commit 4a7f7a9

Please sign in to comment.