We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1053618 commit 5d5cbc9Copy full SHA for 5d5cbc9
tests/integration/source_code/solacc.py
@@ -70,7 +70,7 @@ def print_advices(advices: list[LocatedAdvice], file: Path):
70
71
def lint_one(file: Path, ctx: LocalCheckoutContext, unparsed: Path | None) -> tuple[set[str], int, int]:
72
try:
73
- advices = list(ctx.local_code_linter.lint_path(file))
+ advices = list(ctx.local_code_linter.lint_path(file, set()))
74
missing_imports = collect_missing_imports(advices)
75
not_computed = collect_not_computed(advices)
76
print_advices(advices, file)
0 commit comments