Skip to content

Commit

Permalink
♻ Internal small refactor, move operation_id parameter position in …
Browse files Browse the repository at this point in the history
…delete method for consistency with the code (#4474)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
  • Loading branch information
hiel and tiangolo committed Sep 2, 2022
1 parent e7e6404 commit 52b5b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastapi/applications.py
Expand Up @@ -635,10 +635,10 @@ def delete(
response_description=response_description,
responses=responses,
deprecated=deprecated,
operation_id=operation_id,
response_model_include=response_model_include,
response_model_exclude=response_model_exclude,
response_model_by_alias=response_model_by_alias,
operation_id=operation_id,
response_model_exclude_unset=response_model_exclude_unset,
response_model_exclude_defaults=response_model_exclude_defaults,
response_model_exclude_none=response_model_exclude_none,
Expand Down

0 comments on commit 52b5b08

Please sign in to comment.