templates: Fix Python-Markdown extension type.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2022-06-25 18:37:51 -07:00
committed by Tim Abbott
parent dc33a0ae67
commit 6fe5cb65a1

View File

@@ -65,8 +65,8 @@ def display_list(values: List[str], display_limit: int) -> str:
return display_string
md_extensions: Optional[List[Any]] = None
md_macro_extension: Optional[Any] = None
md_extensions: Optional[List[markdown.Extension]] = None
md_macro_extension: Optional[markdown.Extension] = None
# Prevent the automatic substitution of macros in these docs. If
# they contain a macro, it is always used literally for documenting
# the macro system.