Skip to content

Commit 2fcd353

Browse files
[pre-commit.ci] pre-commit autoupdate (#646)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.9.2 → v0.9.3](astral-sh/ruff-pre-commit@v0.9.2...v0.9.3) - [github.com/igorshubovych/markdownlint-cli: v0.43.0 → v0.44.0](igorshubovych/markdownlint-cli@v0.43.0...v0.44.0) - [github.com/codespell-project/codespell: v2.3.0 → v2.4.0](codespell-project/codespell@v2.3.0...v2.4.0) * Fix typos * Properly fix typo --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Tom Bland <tom_bland@hotmail.co.uk>
1 parent 6fe3ebe commit 2fcd353

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ repos:
99
- id: trailing-whitespace
1010
- id: end-of-file-fixer
1111
- repo: https://github.com/astral-sh/ruff-pre-commit
12-
rev: v0.9.2
12+
rev: v0.9.3
1313
hooks:
1414
- id: ruff-format
1515
types_or: [python, pyi, jupyter]
1616
- id: ruff
1717
types_or: [python, pyi, jupyter]
1818
args: [--fix]
1919
- repo: https://github.com/igorshubovych/markdownlint-cli
20-
rev: v0.43.0
20+
rev: v0.44.0
2121
hooks:
2222
- id: markdownlint-fix
2323
- repo: https://github.com/kynan/nbstripout
@@ -36,7 +36,7 @@ repos:
3636
- id: pretty-format-toml
3737
args: [--autofix, --indent, "4", --no-sort]
3838
- repo: https://github.com/codespell-project/codespell
39-
rev: v2.3.0
39+
rev: v2.4.0
4040
hooks:
4141
- id: codespell
4242
args: [--ignore-words, .codespell_ignore.txt]

src/muse/registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def registrator(
120120
"""
121121
from functools import wraps
122122

123-
# allows specifyng the registered name as a keyword argument
123+
# allows specifying the registered name as a keyword argument
124124
if decorator is None:
125125
return lambda x: registrator(
126126
x, loglevel=loglevel, logname=logname, registry=registry

src/muse/regressions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def register_regression(
207207

208208
from muse.registration import name_variations
209209

210-
# allows specifyng the registered name as a keyword argument
210+
# allows specifying the registered name as a keyword argument
211211
if Functor is None:
212212
return lambda x: register_regression(x, name=name)
213213

0 commit comments

Comments
 (0)