Few more fixes for issues found by testing on internal codebases (#4876)

Few unrelated (but quite obvious) fixes here.

Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
This commit is contained in:
Ivan Levkivskyi
2020-12-30 17:32:14 +00:00
committed by GitHub
parent 85d6df4742
commit 4141dd1176
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ from . import util
def build_postprocessors(md, **kwargs): ...
class Postprocessor(util.Processor):
def run(self, text) -> None: ...
def run(self, text) -> Any: ...
class RawHtmlPostprocessor(Postprocessor):
def isblocklevel(self, html): ...
+1 -1
View File
@@ -6,7 +6,7 @@ def build_treeprocessors(md, **kwargs): ...
def isString(s): ...
class Treeprocessor(util.Processor):
def run(self, root) -> None: ...
def run(self, root) -> Optional[Any]: ...
class InlineProcessor(Treeprocessor):
inlinePatterns: Any