This commit is contained in:
Ashwin Bharambe 2025-10-04 09:41:12 -07:00
parent 314ca13835
commit 8d2018baf7

View file

@ -64,7 +64,7 @@ def normalize_request(method: str, url: str, headers: dict[str, Any], body: dict
from urllib.parse import urlparse from urllib.parse import urlparse
parsed = urlparse(url) parsed = urlparse(url)
normalized = { normalized: dict[str, Any] = {
"method": method.upper(), "method": method.upper(),
"endpoint": parsed.path, "endpoint": parsed.path,
"body": body, "body": body,