Skip to content

Commit cc13a01

Browse files
[pre-commit.ci] pre-commit autoupdate (#361)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.9.10 → v0.11.0](astral-sh/ruff-pre-commit@v0.9.10...v0.11.0) * [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 265b3a7 commit cc13a01

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ci:
99

1010
repos:
1111
- repo: https://github.com/astral-sh/ruff-pre-commit
12-
rev: v0.9.10
12+
rev: v0.11.0
1313
hooks:
1414
- id: ruff
1515
args: [--fix]

flake8_async/visitors/visitor91x.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ def visit_FunctionDef(self, node: cst.FunctionDef) -> bool:
500500

501501
# visit body
502502
# we're not gonna get FlattenSentinel or RemovalSentinel
503-
self.new_body = cast(cst.BaseSuite, node.body.visit(self))
503+
self.new_body = cast("cst.BaseSuite", node.body.visit(self))
504504

505505
# we know that leave_FunctionDef for this FunctionDef will run immediately after
506506
# this function exits so we don't need to worry about save_state for new_body

tests/check_changelog_and_version.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
from pathlib import Path
99
from typing import TYPE_CHECKING, NamedTuple, TypeVar
1010

11+
from typing_extensions import Self
12+
1113
if TYPE_CHECKING:
1214
from collections.abc import Iterable
1315

@@ -27,7 +29,7 @@ class Version(NamedTuple):
2729
patch: int
2830

2931
@classmethod
30-
def from_string(cls: type[T], string: str) -> T:
32+
def from_string(cls, string: str) -> Self:
3133
return cls(*map(int, string.split(".")))
3234

3335
def __str__(self) -> str:

0 commit comments

Comments
 (0)