Skip to content

Commit 09846c7

Browse files
committed
fix ruff runtime warnings
1 parent 8f92c44 commit 09846c7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,18 +105,18 @@ exclude = [
105105
"tests/",
106106
"notebooks/"
107107
]
108-
select = [
108+
lint.select = [
109109
"E", # pycodestyle errors
110110
"W", # pycodestyle warnings
111111
"F", # pyflakes
112112
"I", # isort
113113
"C", # flake8-comprehensions
114114
"B", # flake8-bugbear
115115
]
116-
ignore = []
116+
lint.ignore = []
117117

118-
[tool.ruff.isort]
118+
[tool.lint.isort]
119119
known-first-party = ["iglu_python"]
120120

121-
[tool.ruff.per-file-ignores]
121+
[tool.lint.per-file-ignores]
122122
"tests/*" = ["E501"] # Allow long lines in tests

0 commit comments

Comments
 (0)