Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 5, 2024
1 parent 8cd2620 commit ea0ff0a
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 59 deletions.
6 changes: 0 additions & 6 deletions docs/amplitude-analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/amplitude-analysis/analytic-continuation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/usage.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/usage/basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/usage/binned-fit.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/usage/caching.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/usage/chi-squared.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/usage/faster-lambdify.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
6 changes: 0 additions & 6 deletions docs/usage/unbinned-fit.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell",
"skip-execution"
Expand All @@ -34,9 +31,6 @@
"jupyter": {
"source_hidden": true
},
"slideshow": {
"slide_type": "skip"
},
"tags": [
"remove-cell"
]
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,8 @@ jax = [
"jaxlib",
]
jupyter = [
"black",
"isort",
"jupyterlab",
"jupyterlab-code-formatter",
"jupyterlab-code-formatter >=3.0.0",
"jupyterlab-git",
"jupyterlab-lsp",
"jupyterlab-myst",
Expand Down
4 changes: 2 additions & 2 deletions src/tensorwaves/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class ChiSquared(Estimator):
.. seealso:: :doc:`/usage/chi-squared`
"""

def __init__( # noqa: PLR0913
def __init__(
self,
function: ParametrizedFunction[DataSample, np.ndarray],
domain: DataSample,
Expand Down Expand Up @@ -183,7 +183,7 @@ class UnbinnedNLL(Estimator):
.. seealso:: :doc:`/usage/unbinned-fit`
"""

def __init__( # noqa: PLR0913
def __init__(
self,
function: ParametrizedFunction[DataSample, np.ndarray],
data: DataSample,
Expand Down

0 comments on commit ea0ff0a

Please sign in to comment.