-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add black formatter to pre-commit (#4163)
* add black formatter to pre-commit * fmt off benchmarks Co-authored-by: Marco Gorelli <[email protected]>
- Loading branch information
1 parent
a248c3d
commit 2482a35
Showing
7 changed files
with
170 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,7 +155,7 @@ | |
("Books + Videos", "learn"), | ||
("API", "api"), | ||
("Developer Guide", "developer_guide"), | ||
("About PyMC3", "about") | ||
("About PyMC3", "about"), | ||
], | ||
# "fixed_sidebar": "false", | ||
# "description": "Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano" | ||
|
@@ -264,9 +264,7 @@ | |
# Grouping the document tree into LaTeX files. List of tuples | ||
# (source start file, target name, title, | ||
# author, documentclass [howto, manual, or own class]). | ||
latex_documents = [ | ||
(master_doc, "pymc3.tex", "PyMC3 Documentation", "PyMC developers", "manual") | ||
] | ||
latex_documents = [(master_doc, "pymc3.tex", "PyMC3 Documentation", "PyMC developers", "manual")] | ||
|
||
# The name of an image file (relative to this directory) to place at the top of | ||
# the title page. | ||
|
@@ -330,7 +328,5 @@ | |
|
||
|
||
def setup(app): | ||
app.add_css_file( | ||
"https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css" | ||
) | ||
app.add_css_file("https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css") | ||
app.add_css_file("default.css") |
Oops, something went wrong.