Skip to content

Commit 2edd5ac

Browse files
[pre-commit.ci] pre-commit autoupdate (#233)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 24.10.0 → 25.1.0](psf/black@24.10.0...25.1.0) - [github.com/astral-sh/ruff-pre-commit: v0.8.6 → v0.9.4](astral-sh/ruff-pre-commit@v0.8.6...v0.9.4) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent a2d27b5 commit 2edd5ac

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ repos:
99
- id: end-of-file-fixer
1010
exclude_types: [json, binary]
1111
- repo: https://github.com/psf/black
12-
rev: "24.10.0"
12+
rev: "25.1.0"
1313
hooks:
1414
- id: black-jupyter
1515
- repo: https://github.com/astral-sh/ruff-pre-commit
16-
rev: "v0.8.6"
16+
rev: "v0.9.4"
1717
hooks:
1818
- id: ruff
1919
args: [--fix, --exit-non-zero-on-fix]

src/tinygp/solvers/quasisep/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232

3333
def handle_matvec_shapes(
34-
func: Callable[[Any, JAXArray], JAXArray]
34+
func: Callable[[Any, JAXArray], JAXArray],
3535
) -> Callable[[Any, JAXArray], JAXArray]:
3636
@wraps(func)
3737
def wrapped(self: Any, x: JAXArray) -> JAXArray:

src/tinygp/solvers/quasisep/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828

2929
def handle_matvec_shapes(
30-
func: Callable[[Any, JAXArray], JAXArray]
30+
func: Callable[[Any, JAXArray], JAXArray],
3131
) -> Callable[[Any, JAXArray], JAXArray]:
3232
@wraps(func)
3333
def wrapped(self: Any, x: JAXArray) -> JAXArray:

0 commit comments

Comments
 (0)