Skip to content

Commit 3f028cf

Browse files
removes snippet garbage
1 parent d7877fd commit 3f028cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/routes/environment.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)