diff --git a/ruff.toml b/ruff.toml index 53e8596c..72e111b5 100644 --- a/ruff.toml +++ b/ruff.toml @@ -9,5 +9,9 @@ select = [ "PLC0414" ] -# Ignore module import not at top of file -ignore = ["E402"] +ignore = [ + # Module import not at top of file + "E402", + # Do not use bare `except` + "E722" +]