Skip to content

Commit e18ddc6

Browse files
ci(pre-commit.ci): autoupdate (#687)
* ci(pre-commit.ci): autoupdate updates: - [github.com/crate-ci/typos: v1.28.3 → dictgen-v0.3.1](crate-ci/typos@v1.28.3...dictgen-v0.3.1) - [github.com/astral-sh/ruff-pre-commit: v0.8.3 → v0.8.6](astral-sh/ruff-pre-commit@v0.8.3...v0.8.6) - [github.com/pre-commit/mirrors-mypy: v1.13.0 → v1.14.1](pre-commit/mirrors-mypy@v1.13.0...v1.14.1) * style(pre-commit.ci): auto fixes [...] --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent af861f4 commit e18ddc6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ repos:
1010
- id: validate-pyproject
1111

1212
- repo: https://github.com/crate-ci/typos
13-
rev: v1.28.3
13+
rev: dictgen-v0.3.1
1414
hooks:
1515
- id: typos
1616

1717
- repo: https://github.com/astral-sh/ruff-pre-commit
18-
rev: v0.8.3
18+
rev: v0.8.6
1919
hooks:
2020
- id: ruff
2121
args: ["--fix", "--unsafe-fixes"]
2222
- id: ruff-format
2323

2424
- repo: https://github.com/pre-commit/mirrors-mypy
25-
rev: v1.13.0
25+
rev: v1.14.1
2626
hooks:
2727
- id: mypy
2828
files: "^src/"

docs/decorators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ snells_law.n1.value = Medium.Air
155155

156156
!!! note
157157
This signal will be emitted regardless of whether the parameter was changed in
158-
the GUI or via by [directly setting the paramaeter on the gui
158+
the GUI or via by [directly setting the parameter on the gui
159159
instance](#two-way-data-binding).
160160

161161
## Usage As a Decorator is Optional

src/magicgui/backends/_qtpy/widgets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def _mgui_create_menu_item(
614614

615615
class SpinBox(QBaseRangedWidget):
616616
def __init__(self, **kwargs: Any) -> None:
617-
# TODO: Consider any performance impace of this widget over a QSpinBox
617+
# TODO: Consider any performance impact of this widget over a QSpinBox
618618
super().__init__(superqt.QLargeIntSpinBox, **kwargs)
619619

620620
def _mgui_set_value(self, value) -> None:
@@ -686,7 +686,7 @@ def _cast(self, value: Any) -> Any:
686686

687687
class Slider(_Slider):
688688
_qwidget: QtW.QSlider
689-
# TODO: Consider any performance impace of this widget over a QSpinBox
689+
# TODO: Consider any performance impact of this widget over a QSpinBox
690690
_readout = superqt.QLargeIntSpinBox
691691

692692
def __init__(self, qwidg=QtW.QSlider, **kwargs: Any) -> None:

0 commit comments

Comments
 (0)