From 2eb027754b357100544fe0c8f7c5f6125e017c6f Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 11 Feb 2023 15:27:37 +0100 Subject: [PATCH] fmt tests --- crates/dagger-codegen/src/handlers/object.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/crates/dagger-codegen/src/handlers/object.rs b/crates/dagger-codegen/src/handlers/object.rs index 67863ae..114fdec 100644 --- a/crates/dagger-codegen/src/handlers/object.rs +++ b/crates/dagger-codegen/src/handlers/object.rs @@ -121,12 +121,14 @@ impl CacheVolume { fields: Some(vec![FullTypeFields { name: Some("container".into()), description: Some("Loads a container from ID.\nNull ID returns an empty container (scratch).\nOptional platform argument initializes new containers to execute and publish as that platform. Platform defaults to that of the builder's host.".into()), - args: Some(vec![ + args: Some( + vec![ Some( FullTypeFieldsArgs { input_value: InputValue { name: "id".into(), description: None, type_: TypeRef { kind: Some(__TypeKind::SCALAR), name: Some("ContainerID".into()), of_type: None }, default_value: None } - }), + } + ), Some( FullTypeFieldsArgs { input_value: InputValue { @@ -147,7 +149,8 @@ impl CacheVolume { }), is_deprecated: Some(false), deprecation_reason: None, - }]), + } + ]), input_fields: None, interfaces: None, enum_values: None,