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 2162a91 commit b33d8eaCopy full SHA for b33d8ea
1 file changed
src/mkdocstrings_handlers/shell/_internal/handler.py
@@ -62,7 +62,7 @@ def collect(self, identifier: str, options: ShellOptions) -> CollectorItem: # n
62
except FileNotFoundError as error:
63
raise CollectionError(f"Could not find script '{script_path}'") from error
64
65
- def render(self, data: CollectorItem, options: ShellOptions) -> str:
+ def render(self, data: CollectorItem, options: ShellOptions, *, locale: str | None = None) -> str: # noqa: ARG002
66
"""Render the collected data."""
67
heading_level = options.heading_level
68
template = self.env.get_template("script.html.jinja")
0 commit comments