From 52ea4cc55455cbf8f10d8db472b2defb36c8f380 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Fri, 7 Aug 2026 09:37:46 +0000 Subject: [PATCH] ruff: remove ignores for E401, E402, E701, E713, E721, E731, E741 --- pyproject.toml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9157a8b0..9c1ab84d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,14 +21,7 @@ ignore = [ "B018", # Found useless expression. Either assign it to a variable or remove it. "B026", # Star-arg unpacking after a keyword argument is strongly discouraged "BLE001", # Do not catch blind exception: `Exception` - "E401", # multiple imports per line - "E402", # module import not top of file - "E701", # multiple statements per line - "E713", # membership 'not in' - "E721", # use isinstance() "E722", # bare except - "E731", # lambda instead of def - "E741", # ambiguous variable name "EXE002", # The file is executable but no shebang is present "FURB129", # Instead of calling `readlines()`, iterate over file object directly "FURB157", # Verbose expression in `Decimal` constructor