From 9bfef629d8b2265701353cd0c43e9f2ac99ad338 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Wed, 5 Aug 2026 18:27:06 +0000 Subject: [PATCH] pyproject.toml: sort ruff ignores --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1894739e..2e90df45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,12 +17,12 @@ indent-style = "tab" [tool.ruff.lint] ignore = [ "E401", # multiple imports per line - "E701", # multiple statements per line - "E721", # use isinstance() - "E731", # lambda instead of def "E402", # module import not top of file - "E722", # bare except + "E701", # multiple statements per line "E713", # membership 'not in' + "E721", # use isinstance() + "E722", # bare except + "E731", # lambda instead of def "E741", # ambiguous variable name ]