Highlight possibly-conflicting (nearby) addresses in yellow

This commit is contained in:
zyphlar
2026-08-07 10:29:26 -07:00
parent acdce05ec1
commit a7d6db8177
4 changed files with 80 additions and 19 deletions
-6
View File
@@ -160,12 +160,6 @@ def convert(zip_path, output_path):
zip_path = Path(zip_path)
output_path = Path(output_path)
# Skip if output is newer than input
if (output_path.exists() and zip_path.exists() and
output_path.stat().st_mtime > zip_path.stat().st_mtime):
print(f"Output is up to date: {output_path}")
return
print(f"Converting {zip_path} ...")
exceptions = load_exceptions()