From 64951ccddcfd06f91299ca0e278174b61ccbe385 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Sun, 3 Nov 2024 21:18:15 +0200 Subject: [PATCH] test: ignore ruff trailing comma check for Black compatibility --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 67dee844..ab0eb49f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ target-version = "py38" select = ["ALL"] ignore = [ "ANN101", # Missing type annotation for `self` in method + "COM812", # Trailing comma missing "D203", # One blank line required before class docstring "D213", # Multi-line docstring summary should start at the second line "D400", # First line should end with a period (duplicates D415)