Skip to content

Commit 6a91ab1

Browse files
Flake8 (#1203)
* Fix Flake8 alert * Use `author` variable instead of duplicating Co-authored-by: jakirkham <[email protected]>
1 parent aec6973 commit 6a91ab1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/conf.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def setup(app):
247247
# author, documentclass [howto, manual, or own class]).
248248
latex_documents = [
249249
(main_doc, 'zarr.tex', 'zarr Documentation',
250-
'Zarr Developers', 'manual'),
250+
author, 'manual'),
251251
]
252252

253253
# The name of an image file (relative to this directory) to place at the top of
@@ -311,8 +311,10 @@ def setup(app):
311311
# Example configuration for intersphinx: refer to the Python standard library.
312312
# use in refs e.g:
313313
# :ref:`comparison manual <python:comparisons>`
314-
intersphinx_mapping = { 'python':('https://docs.python.org/', None),
315-
'numpy': ('https://numpy.org/doc/stable/', None)}
314+
intersphinx_mapping = {
315+
'python': ('https://docs.python.org/', None),
316+
'numpy': ('https://numpy.org/doc/stable/', None),
317+
}
316318

317319

318320
# sphinx-copybutton configuration

0 commit comments

Comments
 (0)