From 0a1c6f7aa47ad489957ecdfd6121aea32e5f9c99 Mon Sep 17 00:00:00 2001 From: "Han-Ru Chen (Future-Outlier)" Date: Thu, 21 Nov 2024 21:40:02 +0800 Subject: [PATCH] Update docs/user_guide/data_types_and_io/dataclass.md Co-authored-by: David Espejo <82604841+davidmirror-ops@users.noreply.github.com> Signed-off-by: Han-Ru Chen (Future-Outlier) --- docs/user_guide/data_types_and_io/dataclass.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/user_guide/data_types_and_io/dataclass.md b/docs/user_guide/data_types_and_io/dataclass.md index ac2efe08e9..6f47eeab1f 100644 --- a/docs/user_guide/data_types_and_io/dataclass.md +++ b/docs/user_guide/data_types_and_io/dataclass.md @@ -16,7 +16,6 @@ serialization format for dataclasses, overcoming a major limitation of serializ to store `int` types, Protobuf's `struct` converts them to `float`, forcing users to write boilerplate code to work around this issue. -By default, `flytekit >= 1.14` will produce `msgpack` bytes literals when serializing dataclasses. :::{important}