From 4ae1a944d922f0a17563d11c5fb8930d06bfd5a9 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 10:18:55 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks --- tests/pep695_py312.pyi | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/pep695_py312.pyi b/tests/pep695_py312.pyi index 5f720a3..6bd0575 100644 --- a/tests/pep695_py312.pyi +++ b/tests/pep695_py312.pyi @@ -3,7 +3,16 @@ import typing from collections.abc import Iterator -from typing import Any, NamedTuple, NoReturn, Protocol, Self, TypedDict, Annotated, Literal +from typing import ( + Annotated, + Any, + Literal, + NamedTuple, + NoReturn, + Protocol, + Self, + TypedDict, +) type lowercase_alias = str | int # Y042 Type aliases should use the CamelCase naming convention type _LooksLikeATypeVarT = str | int # Y043 Bad name for a type alias (the "T" suffix implies a TypeVar)