Skip to content

Commit 7b50176

Browse files
committed
@sanderegg review: rename
1 parent 64024ce commit 7b50176

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

api/specs/web-server/_folders.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
status_code=status.HTTP_201_CREATED,
3939
)
4040
async def create_folder(
41-
_b: CreateFolderBodyParams,
41+
_body: CreateFolderBodyParams,
4242
):
4343
...
4444

@@ -79,7 +79,7 @@ async def get_folder(
7979
)
8080
async def replace_folder(
8181
_path: Annotated[FoldersPathParams, Depends()],
82-
_b: PutFolderBodyParams,
82+
_body: PutFolderBodyParams,
8383
):
8484
...
8585

api/specs/web-server/_projects_crud.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class _ProjectCreateHeaderParams(BaseModel):
7171
async def create_project(
7272
_h: Annotated[_ProjectCreateHeaderParams, Depends()],
7373
_path: Annotated[ProjectCreateParams, Depends()],
74-
_b: ProjectCreateNew | ProjectCopyOverride,
74+
_body: ProjectCreateNew | ProjectCopyOverride,
7575
):
7676
...
7777

@@ -113,7 +113,7 @@ async def get_project(
113113
)
114114
async def patch_project(
115115
_path: Annotated[ProjectPathParams, Depends()],
116-
_b: ProjectPatch,
116+
_body: ProjectPatch,
117117
):
118118
...
119119

api/specs/web-server/_resource_usage.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ async def get_pricing_plan(
135135
tags=["admin"],
136136
)
137137
async def create_pricing_plan(
138-
_b: CreatePricingPlanBodyParams,
138+
_body: CreatePricingPlanBodyParams,
139139
):
140140
...
141141

@@ -148,7 +148,7 @@ async def create_pricing_plan(
148148
)
149149
async def update_pricing_plan(
150150
_path: Annotated[PricingPlanGetPathParams, Depends()],
151-
_b: UpdatePricingPlanBodyParams,
151+
_body: UpdatePricingPlanBodyParams,
152152
):
153153
...
154154

@@ -176,7 +176,7 @@ async def get_pricing_unit(
176176
)
177177
async def create_pricing_unit(
178178
_path: Annotated[PricingPlanGetPathParams, Depends()],
179-
_b: CreatePricingUnitBodyParams,
179+
_body: CreatePricingUnitBodyParams,
180180
):
181181
...
182182

@@ -189,7 +189,7 @@ async def create_pricing_unit(
189189
)
190190
async def update_pricing_unit(
191191
_path: Annotated[PricingUnitGetPathParams, Depends()],
192-
_b: UpdatePricingUnitBodyParams,
192+
_body: UpdatePricingUnitBodyParams,
193193
):
194194
...
195195

@@ -217,6 +217,6 @@ async def list_connected_services_to_pricing_plan(
217217
)
218218
async def connect_service_to_pricing_plan(
219219
_path: Annotated[PricingPlanGetPathParams, Depends()],
220-
_b: ConnectServiceToPricingPlanBodyParams,
220+
_body: ConnectServiceToPricingPlanBodyParams,
221221
):
222222
...

0 commit comments

Comments
 (0)