Skip to content

Commit

Permalink
Fix unused python imports
Browse files Browse the repository at this point in the history
  • Loading branch information
msricher committed Mar 7, 2024
1 parent 1896b34 commit 9bdf3c2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 22 deletions.
34 changes: 15 additions & 19 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

import sphinx_rtd_theme

import permanent

# -- Path setup --------------------------------------------------------------

# If extensions (or modules to document with autodoc) are in another directory,
Expand All @@ -21,9 +17,9 @@

# -- Project information -----------------------------------------------------

project = 'Permanent'
copyright = '2022, QC-Devs'
author = 'QC-Devs'
project = "Permanent"
copyright = "2024, QC-Devs"
author = "QC-Devs"


# -- General configuration ---------------------------------------------------
Expand All @@ -32,15 +28,15 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.napoleon',
'sphinx.ext.mathjax',
'sphinx_copybutton',
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.napoleon",
"sphinx.ext.mathjax",
"sphinx_copybutton",
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand All @@ -52,19 +48,19 @@

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"

# 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']
pygments_style = 'sphinx'
html_static_path = ["_static"]
pygments_style = "sphinx"


mathjax_path = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.6/MathJax.js'
mathjax_path = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.6/MathJax.js"


mathjax_config = {
'extensions': ['tex2jax.js'],
'jax': ['input/TeX', 'output/HTML-CSS'],
"extensions": ["tex2jax.js"],
"jax": ["input/TeX", "output/HTML-CSS"],
}
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from setuptools import setup

import numpy as np


name = "permanent"

Expand Down Expand Up @@ -61,7 +59,6 @@


if __name__ == "__main__":

setup(
name=name,
version=version,
Expand Down

0 comments on commit 9bdf3c2

Please sign in to comment.