File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ async def update_environment(
6464 ## Args
6565 ```
6666 environment_id: str
67- becho : models.Becho JSON
67+ environment : models.Environment JSON
6868 ```
6969 """
70- with tracer .start_as_current_span ("update_becho " ):
70+ with tracer .start_as_current_span ("update_environment " ):
7171 controller = EnvironmentController ()
7272 return await controller .put_environment_by_id (
7373 environment_id , environment
@@ -82,7 +82,7 @@ async def delete_environment(environment_id: str) -> None:
8282 ## Args
8383 ``` environment_id: str ```
8484 """
85- with tracer .start_as_current_span ("delete_becho " ):
85+ with tracer .start_as_current_span ("delete_environment " ):
8686 controller = EnvironmentController ()
8787 return await controller .delete_environment_by_id (environment_id )
8888
You can’t perform that action at this time.
0 commit comments