We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cfdf44 commit c37e849Copy full SHA for c37e849
src/furo/__init__.py
@@ -292,7 +292,7 @@ def _get_dark_style(app: sphinx.application.Sphinx) -> Style:
292
return cast(Style, PygmentsBridge("html", dark_style).formatter_args["style"])
293
294
295
-def _get_styles(formatter: HtmlFormatter[str], *, prefix: str) -> Iterator[str]:
+def _get_styles(formatter: "HtmlFormatter[str]", *, prefix: str) -> Iterator[str]:
296
"""Get styles out of a formatter, where everything has the correct prefix."""
297
for line in formatter.get_linenos_style_defs(): # type: ignore[no-untyped-call]
298
yield f"{prefix} {line}"
0 commit comments