Skip to content

Commit 6df82ea

Browse files
committed
🐛 fix(setup): remove hard-coded custom.css reference
The extension unconditionally added a custom.css stylesheet reference that it never provided, causing 404 errors on themes that don't ship their own custom.css. Fixes #82
1 parent 7bc2756 commit 6df82ea

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/sphinx_argparse_cli/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212

1313
def setup(app: Sphinx) -> dict[str, Any]:
14-
app.add_css_file("custom.css")
15-
1614
from ._logic import SphinxArgparseCli # noqa: PLC0415
1715

1816
app.add_directive(SphinxArgparseCli.name, SphinxArgparseCli)

0 commit comments

Comments
 (0)