From 02b1009874d2422e3a6242fb80207437a49d737c Mon Sep 17 00:00:00 2001 From: Ed_ Date: Wed, 24 Jun 2026 09:45:28 -0400 Subject: [PATCH] chore(audit): remove duplicate import json in src/code_path_audit.py The import statement appeared twice in quick succession (lines 655 and 658). Both were identical and contributed nothing. Removed one. No functional change. Verification: - grep -c '^import json' src/code_path_audit.py = 1 - uv run python -c 'from src import code_path_audit' returns OK - 124 tests in tests/test_code_path_audit*.py pass --- src/code_path_audit.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/code_path_audit.py b/src/code_path_audit.py index 8400a092..14172e25 100644 --- a/src/code_path_audit.py +++ b/src/code_path_audit.py @@ -654,9 +654,6 @@ def compute_decomposition_cost( import json - -import json - def read_input_json(path: str) -> Result[dict]: """Read a JSON file and return Result[dict].