From f1b173a59d36e39bbb2ed097bab23b71b3ad80cb Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Tue, 31 Dec 2024 11:00:44 +0000 Subject: [PATCH] Tweak multi-line comment --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e03574bdf..e3d7bef26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -124,10 +124,9 @@ lint.ignore = [ "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` "S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/ "SIM102", # sometimes it's better to nest - "UP038", # Checks for uses of isinstance/issubclass that take a tuple - # of types for comparison. - # Deactivated because it can make the code slow: - # https://github.com/astral-sh/ruff/issues/7871 + # Checks for uses of isinstance/issubclass that take a tuple of types for comparison. + # Deactivated because it can make the code slow: https://github.com/astral-sh/ruff/issues/7871 + "UP038", ] # The fixes in extend-unsafe-fixes will require # provide the `--unsafe-fixes` flag when fixing.