From: Junghoon Yang Date: Fri, 2 Sep 2022 13:36:00 +0000 (+0900) Subject: ♻ Internal small refactor, move `operation_id` parameter position in delete method... X-Git-Tag: 0.82.0~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=52b5b08910356b22cb9837bda88f73f517dd8652;p=thirdparty%2Ffastapi%2Ffastapi.git ♻ Internal small refactor, move `operation_id` parameter position in delete method for consistency with the code (#4474) Co-authored-by: Sebastián Ramírez --- diff --git a/fastapi/applications.py b/fastapi/applications.py index ac6050ca4f..a242c504c1 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -635,10 +635,10 @@ class FastAPI(Starlette): 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,