Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
style: apply automated linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megalinter-bot committed Jan 2, 2024
1 parent a1f1e27 commit 09a648a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/library_analyzer/processing/api/test_infer_purity.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,8 @@ def test_infer_purity_impure(code: str, expected: dict[str, SimpleImpure]) -> No
purity_results = infer_purity(references, function_references, classes, call_graph)

transformed_purity_results = {
to_string_function_def(function_def): to_simple_result(purity_result) for function_def, purity_result in purity_results.items()
to_string_function_def(function_def): to_simple_result(purity_result)
for function_def, purity_result in purity_results.items()
}

assert transformed_purity_results == expected
Expand Down

0 comments on commit 09a648a

Please sign in to comment.