Skip to content

Commit

Permalink
blacken docs config file
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalocasas committed Jan 18, 2023
1 parent be4b060 commit eeb3051
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@
import os

extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.coverage',
'sphinx.ext.doctest',
'sphinx.ext.extlinks',
'sphinx.ext.ifconfig',
'sphinx.ext.napoleon',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.coverage",
"sphinx.ext.doctest",
"sphinx.ext.extlinks",
"sphinx.ext.ifconfig",
"sphinx.ext.napoleon",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
]
if os.getenv('SPELLCHECK'):
extensions += 'sphinxcontrib.spelling',
if os.getenv("SPELLCHECK"):
extensions += ("sphinxcontrib.spelling",)
spelling_show_suggestions = True
spelling_lang = 'en_US'
spelling_lang = "en_US"

source_suffix = '.rst'
master_doc = 'index'
project = 'roslibpy'
year = '2019'
author = 'Gramazio Kohler Research'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.3.0'
source_suffix = ".rst"
master_doc = "index"
project = "roslibpy"
year = "2019"
author = "Gramazio Kohler Research"
copyright = "{0}, {1}".format(year, author)
version = release = "1.3.0"

pygments_style = 'trac' # Perhaps change to sphinx
templates_path = ['.']
pygments_style = "trac" # Perhaps change to sphinx
templates_path = ["."]
extlinks = {
'issue': ('https://github.com/gramaziokohler/roslibpy/issues/%s', '#'),
'pr': ('https://github.com/gramaziokohler/roslibpy/pull/%s', 'PR #'),
"issue": ("https://github.com/gramaziokohler/roslibpy/issues/%s", "#"),
"pr": ("https://github.com/gramaziokohler/roslibpy/pull/%s", "PR #"),
}
# on_rtd is whether we are on readthedocs.org
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
html_theme = 'alabaster'
on_rtd = os.environ.get("READTHEDOCS", None) == "True"
html_theme = "alabaster"
html_theme_options = {
"description": "Python ROS Bridge library",
"github_user": "gramaziokohler",
Expand All @@ -44,12 +44,12 @@
}

html_use_smartypants = True
html_last_updated_fmt = '%b %d, %Y'
html_last_updated_fmt = "%b %d, %Y"
html_split_index = False
html_sidebars = {
'**': ['about.html', 'navigation.html', 'searchbox.html'],
"**": ["about.html", "navigation.html", "searchbox.html"],
}
html_short_title = '%s-%s' % (project, version)
html_short_title = "%s-%s" % (project, version)

napoleon_use_ivar = True
napoleon_use_rtype = False
Expand Down

0 comments on commit eeb3051

Please sign in to comment.