Skip to content

Commit bf77f36

Browse files
committed
Format code using black
1 parent aa6a0a3 commit bf77f36

File tree

2 files changed

+3
-3
lines changed
  • {{cookiecutter.github_project_name}}

2 files changed

+3
-3
lines changed

Diff for: {{cookiecutter.github_project_name}}/docs/conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#
1313
import os
1414
import sys
15+
1516
sys.path.insert(0, os.path.abspath('../{{ cookiecutter.python_package_name }}'))
1617

1718

@@ -37,7 +38,7 @@
3738
"numpydoc",
3839
'sphinx.ext.autodoc',
3940
'sphinx.ext.inheritance_diagram',
40-
'autoapi.sphinx'
41+
'autoapi.sphinx',
4142
]
4243

4344
sphinx_gallery_conf = {

Diff for: {{cookiecutter.github_project_name}}/{{cookiecutter.python_package_name}}/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
# Copyright (c) {{ cookiecutter.author_name }}.
55
# Distributed under the terms of the Modified BSD License.
66

7-
# Must import __version__ first to avoid errors importing this file during the build process.
7+
# Must import __version__ first to avoid errors importing this file during the build process.
88
# See https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
99
from ._version import __version__
1010

1111
from .example import example_function
12-

0 commit comments

Comments
 (0)