From d86370a8c2851e5690987e17261a4ee605e27701 Mon Sep 17 00:00:00 2001 From: Josh Liburdi Date: Mon, 16 Oct 2023 00:42:16 +0000 Subject: [PATCH] style: tf --- transform/object_to_float.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transform/object_to_float.go b/transform/object_to_float.go index 0cccea22..5fff9a05 100644 --- a/transform/object_to_float.go +++ b/transform/object_to_float.go @@ -57,7 +57,7 @@ func (tf *objectToFloat) Transform(ctx context.Context, msg *message.Message) ([ if !value.Exists() { return []*message.Message{msg}, nil } - + if err := msg.SetValue(tf.conf.Object.SetKey, value.Float()); err != nil { return nil, fmt.Errorf("transform: object_to_float: %v", err) }