CI: Fix for ruff 0.160

This commit is contained in:
Kernc
2022-12-05 19:27:07 +01:00
parent 6ac0a215c2
commit ee324f6dca

View File

@@ -6,14 +6,15 @@ exclude = [
'doc/examples', 'doc/examples',
] ]
ignore = [ ignore = [
'U006', 'UP006',
'U007', 'UP007',
'U009', 'UP009',
'N802', 'N802',
'N806', 'N806',
'C901', 'C901',
'B008', 'B008',
'B011', 'B011',
'RUF002',
] ]
line-length = 100 line-length = 100
select = [ select = [
@@ -21,12 +22,12 @@ select = [
'E', 'E',
'F', 'F',
'W', 'W',
'U', 'UP',
'N', 'N',
'C', 'C',
'B', 'B',
'T', 'T',
'M', 'RUF',
'YTT', 'YTT',
] ]