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(
64
64
## Args
65
65
```
66
66
environment_id: str
67
- becho : models.Becho JSON
67
+ environment : models.Environment JSON
68
68
```
69
69
"""
70
- with tracer .start_as_current_span ("update_becho " ):
70
+ with tracer .start_as_current_span ("update_environment " ):
71
71
controller = EnvironmentController ()
72
72
return await controller .put_environment_by_id (
73
73
environment_id , environment
@@ -82,7 +82,7 @@ async def delete_environment(environment_id: str) -> None:
82
82
## Args
83
83
``` environment_id: str ```
84
84
"""
85
- with tracer .start_as_current_span ("delete_becho " ):
85
+ with tracer .start_as_current_span ("delete_environment " ):
86
86
controller = EnvironmentController ()
87
87
return await controller .delete_environment_by_id (environment_id )
88
88
You can’t perform that action at this time.
0 commit comments