From fdb039faf2cbd5854380525daefbd70e9af97cd2 Mon Sep 17 00:00:00 2001 From: fig-ai-agent Date: Mon, 14 Sep 2026 12:12:51 +0000 Subject: [PATCH] chore(lint): drop unused `import sys` from knowledge/scripts/diff_policy.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `sys` is imported but never referenced in the file — the only occurrence is the import line itself. Removing it clears the unused-import warning. Applies the intent of #253 to current main, where the branch's snapshot of this file had gone stale and no longer applied. Verified: file compiles, and an AST pass over the imports after the change reports none unused. --- knowledge/scripts/diff_policy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/knowledge/scripts/diff_policy.py b/knowledge/scripts/diff_policy.py index 5f22eac8..9b20c3cd 100644 --- a/knowledge/scripts/diff_policy.py +++ b/knowledge/scripts/diff_policy.py @@ -23,7 +23,6 @@ import hashlib import json import re -import sys from pathlib import Path # knowledge/scripts/diff_policy.py -> parents[0]=scripts, parents[1]=knowledge