From cfce08b04beb98851c1fcd07b19cf765a2e3b35e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 13:32:44 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks --- pyi.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyi.py b/pyi.py index 357afbe..d773fe3 100644 --- a/pyi.py +++ b/pyi.py @@ -2123,7 +2123,9 @@ def check_self_typevars(self, node: ast.FunctionDef | ast.AsyncFunctionDef) -> N return_annotation=return_annotation, ) - def check_protocol_param_kinds(self, node: ast.FunctionDef | ast.AsyncFunctionDef) -> None: + def check_protocol_param_kinds( + self, node: ast.FunctionDef | ast.AsyncFunctionDef + ) -> None: for pos_or_kw in node.args.args[1:]: # exclude "self" if pos_or_kw.arg.startswith("__"): continue