Skip to content

Commit 32c238e

Browse files
committed
Minor fixes
1 parent cbbbad5 commit 32c238e

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/codecov.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ignore:
22
- "extern/**/*"
3-
- "**/python"
3+
- "bindings/**/*"
44
- "test/**/*"
5-
- "src/mqt/debugger/dap/**/*"
6-
- "src/mqt/debugger/dap/*"
5+
- "python/mqt/debugger/dap/**/*"
6+
- "python/mqt/debugger/dap/*"
77
- "app/*"
88
- "src/frontend/**/*"
99
- "**/__main__.py"

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,10 @@ ignore = [
207207
"S101", # Use of assert detected
208208
"S404", # `subprocess` module is possibly insecure
209209
]
210-
isort.required-imports = ["from __future__ import annotations"]
210+
211+
[tool.ruff.lint.isort]
212+
known-first-party = ["mqt.debugger"]
213+
required-imports = ["from __future__ import annotations"]
211214

212215
[tool.ruff.lint.flake8-tidy-imports.banned-api]
213216
"typing.Callable".msg = "Use collections.abc.Callable instead."

0 commit comments

Comments
 (0)