Skip to content

Commit 67e5126

Browse files
dependabot[bot]pre-commit-ci[bot]yanyongyu
authored
⬆️ Bump astral-sh/setup-uv from 6 to 7 in /.github/actions/setup-python in the actions group (#3710)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Ju4tCode <[email protected]>
1 parent 0212247 commit 67e5126

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/setup-python/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ inputs:
1414
runs:
1515
using: "composite"
1616
steps:
17-
- uses: astral-sh/setup-uv@v6
17+
- uses: astral-sh/setup-uv@v7
1818
with:
1919
python-version: ${{ inputs.python-version }}
2020
cache-suffix: ${{ inputs.env-group }}

nonebot/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def origin_is_annotated(origin: t.Optional[type[t.Any]]) -> bool:
8989
return origin is t_ext.Annotated
9090

9191

92-
NONE_TYPES = {None, type(None), t.Literal[None], t_ext.Literal[None]}
92+
NONE_TYPES = {None, type(None), t.Literal[None], t_ext.Literal[None]} # noqa: PYI061
9393
if sys.version_info >= (3, 10):
9494
NONE_TYPES.add(types.NoneType)
9595

0 commit comments

Comments
 (0)