Skip to content

Commit 02c09c1

Browse files
committed
Nope. Make lint happy?
1 parent 4121905 commit 02c09c1

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

docs/conf.py

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@
1818

1919
sys.path.insert(0, os.path.abspath('..'))
2020
sys.path.append(os.path.dirname(__file__))
21-
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'readthedocs.settings.dev')
21+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "readthedocs.settings.dev")
2222

2323
try:
2424
# Nesting in try to avoid isort inflicting unwanted changes. It tries to
2525
# move these imports above the very necessary sys.path manipulation.
2626
import django
2727
from django.utils import timezone
28+
2829
django.setup()
2930
except ImportError:
3031
raise
@@ -66,11 +67,9 @@
6667

6768
templates_path = ['_templates']
6869

69-
master_doc = 'index'
70-
copyright = '2010-{}, Read the Docs, Inc & contributors'.format(
71-
timezone.now().year
72-
)
73-
version = '7.4.2'
70+
master_doc = "index"
71+
copyright = "2010-{}, Read the Docs, Inc & contributors".format(timezone.now().year)
72+
version = "7.4.2"
7473
release = version
7574
exclude_patterns = ['_build']
7675
default_role = 'obj'
@@ -95,15 +94,15 @@
9594
'rtd-dev': ('https://dev.readthedocs.io/en/latest/', None),
9695
}
9796
myst_enable_extensions = [
98-
'deflist',
97+
"deflist",
9998
]
10099
hoverxref_intersphinx = [
101-
'sphinx',
102-
'pip',
103-
'nbsphinx',
104-
'myst-nb',
105-
'ipywidgets',
106-
'jupytext',
100+
"sphinx",
101+
"pip",
102+
"nbsphinx",
103+
"myst-nb",
104+
"ipywidgets",
105+
"jupytext",
107106
]
108107
htmlhelp_basename = 'ReadTheDocsdoc'
109108
latex_documents = [

readthedocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Read the Docs."""
22

33

4-
__version__ = '7.4.2'
4+
__version__ = "7.4.2"

0 commit comments

Comments
 (0)