From e8f02202a8e33cc86e5ac78ca568f33a2f592246 Mon Sep 17 00:00:00 2001 From: Simon Sawicki Date: Sat, 17 Feb 2024 19:09:02 +0100 Subject: [PATCH] Have consistent spacing --- pyproject.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 003ee6bba..4411b5465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -150,16 +150,16 @@ line-length = 120 [tool.ruff.lint] ignore = [ - "E402", # module level import not at top of file - "E501", # line too long - "E731", # do not assign a lambda expression, use a def - "E741", # ambiguous variable name + "E402", # module level import not at top of file + "E501", # line too long + "E731", # do not assign a lambda expression, use a def + "E741", # ambiguous variable name ] select = [ - "E", # pycodestyle errors - "W", # pycodestyle warnings - "F", # pyflakes - # "I", # import order + "E", # pycodestyle errors + "W", # pycodestyle warnings + "F", # pyflakes + # "I", # import order ] [tool.ruff.lint.per-file-ignores]