Skip to content

Commit ab822f5

Browse files
committed
Ignore bare except in ruff checks
1 parent 46a2227 commit ab822f5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

ruff.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@ select = [
99
"PLC0414"
1010
]
1111

12-
# Ignore module import not at top of file
13-
ignore = ["E402"]
12+
ignore = [
13+
# Module import not at top of file
14+
"E402",
15+
# Do not use bare `except`
16+
"E722"
17+
]

0 commit comments

Comments
 (0)