@@ -35,8 +35,8 @@ def test_method_create(self, client: Gradient) -> None:
3535 def test_method_create_with_all_params (self , client : Gradient ) -> None :
3636 workspace = client .agents .evaluation_metrics .workspaces .create (
3737 agent_uuids = ["example string" ],
38- description = ' "example string"' ,
39- name = ' "example name"' ,
38+ description = "example string" ,
39+ name = "example name" ,
4040 )
4141 assert_matches_type (WorkspaceCreateResponse , workspace , path = ["response" ])
4242
@@ -117,9 +117,9 @@ def test_method_update(self, client: Gradient) -> None:
117117 def test_method_update_with_all_params (self , client : Gradient ) -> None :
118118 workspace = client .agents .evaluation_metrics .workspaces .update (
119119 path_workspace_uuid = '"123e4567-e89b-12d3-a456-426614174000"' ,
120- description = ' "example string"' ,
121- name = ' "example name"' ,
122- body_workspace_uuid = ' "123e4567-e89b-12d3-a456-426614174000"' ,
120+ description = "example string" ,
121+ name = "example name" ,
122+ body_workspace_uuid = "123e4567-e89b-12d3-a456-426614174000" ,
123123 )
124124 assert_matches_type (WorkspaceUpdateResponse , workspace , path = ["response" ])
125125
@@ -286,8 +286,8 @@ async def test_method_create(self, async_client: AsyncGradient) -> None:
286286 async def test_method_create_with_all_params (self , async_client : AsyncGradient ) -> None :
287287 workspace = await async_client .agents .evaluation_metrics .workspaces .create (
288288 agent_uuids = ["example string" ],
289- description = ' "example string"' ,
290- name = ' "example name"' ,
289+ description = "example string" ,
290+ name = "example name" ,
291291 )
292292 assert_matches_type (WorkspaceCreateResponse , workspace , path = ["response" ])
293293
@@ -368,9 +368,9 @@ async def test_method_update(self, async_client: AsyncGradient) -> None:
368368 async def test_method_update_with_all_params (self , async_client : AsyncGradient ) -> None :
369369 workspace = await async_client .agents .evaluation_metrics .workspaces .update (
370370 path_workspace_uuid = '"123e4567-e89b-12d3-a456-426614174000"' ,
371- description = ' "example string"' ,
372- name = ' "example name"' ,
373- body_workspace_uuid = ' "123e4567-e89b-12d3-a456-426614174000"' ,
371+ description = "example string" ,
372+ name = "example name" ,
373+ body_workspace_uuid = "123e4567-e89b-12d3-a456-426614174000" ,
374374 )
375375 assert_matches_type (WorkspaceUpdateResponse , workspace , path = ["response" ])
376376
0 commit comments