Add return type hint to forward_headers_from_request method

- Added missing Dict return type annotation to improve type safety
- Enhances IDE autocomplete and static type checking
- No functional changes, purely type annotation improvement
This commit is contained in:
Vivek Vardhan 2026-03-15 15:00:43 +00:00
parent 548e7ebd60
commit 0be6b489f2

View file

@ -40,7 +40,7 @@ class BasePassthroughUtils:
request_headers: dict,
headers: dict,
forward_headers: Optional[bool] = False,
):
) -> dict:
"""
Helper to forward headers from original request.