Skip to content

Commit 5ea7a53

Browse files
[ruff] Fix the section of select in the pyproject.toml
1 parent d847a06 commit 5ea7a53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ line-length = 120
6666

6767
[tool.ruff]
6868
line-length = 120
69-
select = [
69+
lint.select = [
70+
"B", # bugbear
7071
"E", # pycodestyle
7172
"F", # pyflakes
72-
"W", # pycodestyle
73-
"B", # bugbear
7473
"I", # isort
7574
"RUF", # ruff
7675
"UP", # pyupgrade
76+
"W", # pycodestyle
7777
]
7878
ignore = [
7979
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`

0 commit comments

Comments
 (0)