Refactor to address Type Hint from Pylance

This commit is contained in:
nathan 2026-04-03 10:53:00 -04:00
parent e0001bed16
commit 2d96e0fc89

View File

@ -136,7 +136,7 @@ def scan_manager_mismatches() -> dict[str, Any]:
WIS-017: Scan all workers and return a report of manager relationship errors. WIS-017: Scan all workers and return a report of manager relationship errors.
This provides the data for WIS-020 weekly drift reporting. This provides the data for WIS-020 weekly drift reporting.
""" """
mismatches = [] mismatches: list[dict[str, Any]] = []
total_scanned = 0 total_scanned = 0
for emp_id, details in MOCK_WORKERS.items(): for emp_id, details in MOCK_WORKERS.items():