Skip to content

Commit 677ff08

Browse files
ignore last check
Signed-off-by: Laurynas Jagutis <[email protected]>
1 parent f9a743a commit 677ff08

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ select = [
122122
"TID",
123123
"ARG",
124124
"RET",
125-
"PIE"
125+
"PIE",
126+
"SLF"
126127
]
127128

128129
[tool.ruff.lint.isort]
@@ -134,6 +135,9 @@ combine-as-imports = true
134135
"docs/examples/*.ipynb" = ["F811", "E402"]
135136
# Pylint was only run in src directory before moving to Ruff
136137
"tests/*" = ["PLR0915", "PLR0912", "PLR0913"]
138+
# Ignore private member access: _model_ptr, _all_component_count...
139+
"src/power_grid_model/_core/*.py" = ["SLF001"]
140+
"tests/unit/test_error_handling.py" = ["SLF001"]
137141
"setup.py" = ["PL"]
138142

139143
[tool.mypy]

0 commit comments

Comments
 (0)