Skip to content

Commit 5d5cbc9

Browse files
authored
fix failing solacc (#2250)
## Changes Fix failing solacc ### Linked issues None ### Functionality None ### Tests - [x] manually tested `make solacc` output: INFO [verify-accelerators] Skipped: 9, parseable: 100% (1155/1155), missing imports: 213, not computed: 757 Co-authored-by: Eric Vergnaud <[email protected]>
1 parent 1053618 commit 5d5cbc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/source_code/solacc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def print_advices(advices: list[LocatedAdvice], file: Path):
7070

7171
def lint_one(file: Path, ctx: LocalCheckoutContext, unparsed: Path | None) -> tuple[set[str], int, int]:
7272
try:
73-
advices = list(ctx.local_code_linter.lint_path(file))
73+
advices = list(ctx.local_code_linter.lint_path(file, set()))
7474
missing_imports = collect_missing_imports(advices)
7575
not_computed = collect_not_computed(advices)
7676
print_advices(advices, file)

0 commit comments

Comments
 (0)