From 8d2018baf732d9bb5783756fe2d16bd8f57f8be4 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Sat, 4 Oct 2025 09:41:12 -0700 Subject: [PATCH] mypy --- llama_stack/testing/inference_recorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/testing/inference_recorder.py b/llama_stack/testing/inference_recorder.py index ce49a141f..9f8140c08 100644 --- a/llama_stack/testing/inference_recorder.py +++ b/llama_stack/testing/inference_recorder.py @@ -64,7 +64,7 @@ def normalize_request(method: str, url: str, headers: dict[str, Any], body: dict from urllib.parse import urlparse parsed = urlparse(url) - normalized = { + normalized: dict[str, Any] = { "method": method.upper(), "endpoint": parsed.path, "body": body,