From 2d880babc8b73c066b3fd3542bd86ba2f8c97a4c Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 15 Aug 2023 18:26:38 +0100 Subject: [PATCH] Enable E252 (Missing whitespace around parameter equals) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 9869f872b..1b897f7c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -312,6 +312,7 @@ select = [ "E231", # Missing whitespace after '{token}' "E241", # Multiple spaces after comma "E242", # Tab after comma + "E252", # Missing whitespace around parameter equals ] [tool.ruff.per-file-ignores]