Skip to content

Commit 36bceda

Browse files
committed
Run black
1 parent f81bf16 commit 36bceda

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

Diff for: docs/source/conf.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = 'pytest-dbt-core'
21-
copyright = '2022, Cor Zuurmond'
22-
author = 'Cor Zuurmond'
20+
project = "pytest-dbt-core"
21+
copyright = "2022, Cor Zuurmond"
22+
author = "Cor Zuurmond"
2323

2424

2525
# -- General configuration ---------------------------------------------------
@@ -28,12 +28,12 @@
2828
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2929
# ones.
3030
extensions = [
31-
'sphinx.ext.duration',
32-
'sphinx.ext.doctest',
31+
"sphinx.ext.duration",
32+
"sphinx.ext.doctest",
3333
]
3434

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

3838
# List of patterns, relative to source directory, that match files and
3939
# directories to ignore when looking for source files.
@@ -46,9 +46,9 @@
4646
# The theme to use for HTML and HTML Help pages. See the documentation for
4747
# a list of builtin themes.
4848
#
49-
html_theme = 'sphinx_rtd_theme'
49+
html_theme = "sphinx_rtd_theme"
5050

5151
# Add any paths that contain custom static files (such as style sheets) here,
5252
# relative to this directory. They are copied after the builtin static files,
5353
# so a file named "default.css" will overwrite the builtin "default.css".
54-
html_static_path = ['_static']
54+
html_static_path = ["_static"]

Diff for: scripts/release.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ def get_upstream(repo: Repo) -> Remote:
7474
for url in remote.urls:
7575
if url.endswith("godatadriven/pytest-dbt-core.git"):
7676
return remote
77-
raise RuntimeError("could not find godatadriven/pytest-dbt-core.git remote")
77+
raise RuntimeError(
78+
"could not find godatadriven/pytest-dbt-core.git remote"
79+
)
7880

7981

8082
def tag_release_commit(

0 commit comments

Comments
 (0)