From 2d96e0fc89ced56016896f23b0096e576b71a9d8 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 3 Apr 2026 10:53:00 -0400 Subject: [PATCH] Refactor to address Type Hint from Pylance --- Workday/workday-mcp/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Workday/workday-mcp/server.py b/Workday/workday-mcp/server.py index eb061b1..416aeee 100644 --- a/Workday/workday-mcp/server.py +++ b/Workday/workday-mcp/server.py @@ -136,7 +136,7 @@ def scan_manager_mismatches() -> dict[str, Any]: WIS-017: Scan all workers and return a report of manager relationship errors. This provides the data for WIS-020 weekly drift reporting. """ - mismatches = [] + mismatches: list[dict[str, Any]] = [] total_scanned = 0 for emp_id, details in MOCK_WORKERS.items():