Skip to content

Commit

Permalink
Bump mypy from 1.11.1 to 1.13.0 (#491)
Browse files Browse the repository at this point in the history
* Bump mypy from 1.11.1 to 1.13.0

Bumps [mypy](https://github.com/python/mypy) from 1.11.1 to 1.13.0.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11.1...v1.13.0)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix type error

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Amethyst Reese <[email protected]>
  • Loading branch information
dependabot[bot] and amyreese authored Nov 1, 2024
1 parent 5992c3a commit 8430224
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dev = [
"black == 24.4.2",
"flake8 == 7.1.0",
"flake8-bugbear == 24.10.31",
"mypy == 1.11.1",
"mypy == 1.13.0",
"ufmt == 2.8.0",
"usort == 1.0.8.post1",
]
Expand Down
2 changes: 1 addition & 1 deletion src/fixit/rules/rewrite_to_literal.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def visit_Call(self, node: cst.Call) -> None:
cst.ensure_type(
ele.value,
(
cst.Tuple # type: ignore
cst.Tuple
if isinstance(ele.value, cst.Tuple)
else cst.List
),
Expand Down

0 comments on commit 8430224

Please sign in to comment.