Skip to content

Commit d49183b

Browse files
[pre-commit.ci] pre-commit autoupdate (#166)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pre-commit/mirrors-mypy: v0.930 → v0.931](pre-commit/mirrors-mypy@v0.930...v0.931) * style: remove unneeded type ignore Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <[email protected]>
1 parent ffe4958 commit d49183b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
stages: [manual]
4343

4444
- repo: https://github.com/pre-commit/mirrors-mypy
45-
rev: v0.930
45+
rev: v0.931
4646
hooks:
4747
- id: mypy
4848
files: src

src/vector/_backends/numpy_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def __ne__(self, other: typing.Any) -> typing.Any:
430430

431431
def __reduce__(self) -> typing.Union[str, typing.Tuple[typing.Any, ...]]:
432432
pickled_state = super().__reduce__()
433-
new_state = (*pickled_state[2], self.__dict__) # type: ignore[misc]
433+
new_state = (*pickled_state[2], self.__dict__)
434434
return pickled_state[0], pickled_state[1], new_state
435435

436436
def __setstate__(self, state: typing.Any) -> None:

0 commit comments

Comments
 (0)