Skip to content

Commit 507ac59

Browse files
committed
Remove ExtensionMetadata import
Signed-off-by: Liran Funaro <liran.funaro@gmail.com>
1 parent 9c34113 commit 507ac59

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sphinx_markdown_builder/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22
A Sphinx extension to add markdown generation support.
33
"""
44

5-
from sphinx.util.typing import ExtensionMetadata
6-
75
from sphinx_markdown_builder.builder import MarkdownBuilder
86

97

108
__version__ = "0.6.9"
119
__docformat__ = "reStructuredText"
1210

1311

14-
def setup(app) -> ExtensionMetadata:
12+
def setup(app):
1513
app.add_builder(MarkdownBuilder)
1614
app.add_config_value("markdown_http_base", "", "html", str)
1715
app.add_config_value("markdown_uri_doc_suffix", ".md", "html", str)

0 commit comments

Comments
 (0)