From 2ac9eabc757b92ca40238d68d62e7ec02d16b89e Mon Sep 17 00:00:00 2001 From: Lilferrit Date: Tue, 9 Jul 2024 09:57:27 -0700 Subject: [PATCH] requested changes --- docs/conf.py | 6 +----- docs/sphinx_click_handlers.py | 2 -- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d9785557..98f96367 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,6 +15,7 @@ import os import sys + sys.path.insert(0, os.path.abspath(".")) @@ -58,13 +59,8 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -# html_static_path = ["_static"] html_theme_options = {"repository_url": "https//github.com/Noble-Lab/casanovo"} -html_js_files = [ - "js/cli-page.js", -] - # -- MyST configuration ------------------------------------------------------ myst_enable_extensions = [ "amsmath", diff --git a/docs/sphinx_click_handlers.py b/docs/sphinx_click_handlers.py index 2948634f..7b0dd106 100644 --- a/docs/sphinx_click_handlers.py +++ b/docs/sphinx_click_handlers.py @@ -2,8 +2,6 @@ def process_description(app, ctx, lines): if ctx.command.name == "main": del lines[:3] - print(lines) - def setup(app): app.connect("sphinx-click-process-description", process_description)