From f93c0f54873ab3e4693bba0915367f1467fdfef2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 16:53:06 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index aaebc97..de2f57b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,6 +81,10 @@ lint.select = [ "W", # pycodestyle (warnings) "YTT", # flake8-2020 ] +lint.ignore = [ + "COM812", + "ISC001", +] lint.per-file-ignores."tests/*" = [ "S101", ] @@ -91,7 +95,3 @@ lint.isort.required-imports = [ "from __future__ import annotations", ] lint.pydocstyle.convention = "google" -lint.ignore = [ - "COM812", - "ISC001", -]