Skip to content

Commit ee324f6

Browse files
committed
CI: Fix for ruff 0.160
1 parent 6ac0a21 commit ee324f6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pyproject.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,28 @@ exclude = [
66
'doc/examples',
77
]
88
ignore = [
9-
'U006',
10-
'U007',
11-
'U009',
9+
'UP006',
10+
'UP007',
11+
'UP009',
1212
'N802',
1313
'N806',
1414
'C901',
1515
'B008',
1616
'B011',
17+
'RUF002',
1718
]
1819
line-length = 100
1920
select = [
2021
'I',
2122
'E',
2223
'F',
2324
'W',
24-
'U',
25+
'UP',
2526
'N',
2627
'C',
2728
'B',
2829
'T',
29-
'M',
30+
'RUF',
3031
'YTT',
3132
]
3233

0 commit comments

Comments
 (0)