From 2407e906c9efc2b5b3bb26bf1fe298277abf4a62 Mon Sep 17 00:00:00 2001 From: Future-Outlier Date: Tue, 2 Jul 2024 07:49:42 -0700 Subject: [PATCH] Fix Dataclass Doc about (#5533) Signed-off-by: Future-Outlier --- docs/user_guide/data_types_and_io/dataclass.md | 2 +- 1 file changed, 1 insertion(+), 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 6ff4f08a1f..4ec45cc278 100644 --- a/docs/user_guide/data_types_and_io/dataclass.md +++ b/docs/user_guide/data_types_and_io/dataclass.md @@ -13,7 +13,7 @@ to serialize and deserialize dataclasses. :::{important} If you're using Flytekit version below v1.10, you'll need to decorate with `@dataclass_json` using -`from dataclass_json import dataclass_json` instead of inheriting from Mashumaro's `DataClassJSONMixin`. +`from dataclasses_json import dataclass_json` instead of inheriting from Mashumaro's `DataClassJSONMixin`. If you're using Flytekit version >= v1.11.1, you don't need to decorate with `@dataclass_json` or inherit from Mashumaro's `DataClassJSONMixin`.