cleanup: remove orphaned lib/address_book.py (post-cleanup-4 dead code)

After cleanup #4 deleted lib/geocode.py, the only remaining address_book
references in recon were lib/address_book_test.py (test of the dying SUT) and
a dead `from . import address_book` import at the top of lib/netsyms_api.py
(never referenced in the body). This PR removes all three.

- DELETE lib/address_book.py + lib/address_book_test.py
- netsyms_api.py: drop the dead `from . import address_book` import

config/address_book.yaml stays — vendored data, navi-contacts (:8423) consumes
its own copy via NAVI_ADDRESS_BOOK_YAML.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
malice 2026-05-23 10:29:39 -06:00 committed by GitHub
commit 79d7b2b343
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 252 deletions

View file

@ -8,7 +8,6 @@ GET /api/netsyms/health
from flask import Blueprint, request, jsonify
from . import netsyms
from . import address_book
from .utils import setup_logging
logger = setup_logging('recon.netsyms_api')