From eff78cb514f41ca5ee91ae56da3fe44f570b9a87 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sat, 23 Mar 2024 20:52:32 +0200 Subject: [PATCH] Skip PYI034 as typing.Self is in Python 3.10+ --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d1d9c82e4..2ef3fb2d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -117,6 +117,7 @@ ignore = [ "E221", # Multiple spaces before operator "E226", # Missing whitespace around arithmetic operator "E241", # Multiple spaces after ',' + "PYI034", # flake8-pyi: typing.Self added in Python 3.10 ] [tool.ruff.lint.per-file-ignores]