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',
]
ignore = [
'U006',
'U007',
'U009',
'UP006',
'UP007',
'UP009',
'N802',
'N806',
'C901',
'B008',
'B011',
'RUF002',
]
line-length = 100
select = [
@@ -21,12 +22,12 @@ select = [
'E',
'F',
'W',
'U',
'UP',
'N',
'C',
'B',
'T',
'M',
'RUF',
'YTT',
]