Fix `Dict` -> `dict`

This commit is contained in:
Motov Yurii 2026-01-08 12:54:04 +01:00 committed by GitHub
parent 0522411787
commit 0a116bd872
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ def get_request_handler(
raw_response.background = solved_result.background_tasks
return raw_response
response_args: Dict[str, Any] = {"background": solved_result.background_tasks}
response_args: dict[str, Any] = {"background": solved_result.background_tasks}
# If status_code was set, use it, otherwise use the default from the
# response class, in the case of redirect it's 307
if solved_result.response.status_code: