We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 341afe6 commit 09c6f5cCopy full SHA for 09c6f5c
src/sphinxnotes/snippet/ext.py
@@ -17,7 +17,7 @@
17
from docutils import nodes
18
from sphinx.locale import __
19
from sphinx.util import logging
20
-from sphinx.builders import Builder
+from sphinx.builders.dummy import DummyBuilder
21
22
if TYPE_CHECKING:
23
from sphinx.application import Sphinx
@@ -150,7 +150,7 @@ def on_builder_finished(app:Sphinx, exception) -> None:
150
cache.dump()
151
152
153
-class SnippetBuilder(Builder):
+class SnippetBuilder(DummyBuilder): # DummyBuilder has dummy impls we need.
154
name = 'snippet'
155
epilog = __('The snippet builder produces snippets (not to OUTPUTDIR) for use by snippet CLI tool')
156
0 commit comments