From ada05ed10febb83ff51fbd7166534f26fbf728e4 Mon Sep 17 00:00:00 2001 From: Future-Outlier Date: Mon, 11 Nov 2024 22:28:26 +0800 Subject: [PATCH] Reviews from Eduardo Signed-off-by: Future-Outlier --- flytepropeller/pkg/compiler/validators/typing.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flytepropeller/pkg/compiler/validators/typing.go b/flytepropeller/pkg/compiler/validators/typing.go index 43fbb61760..1fc9c493ca 100644 --- a/flytepropeller/pkg/compiler/validators/typing.go +++ b/flytepropeller/pkg/compiler/validators/typing.go @@ -19,6 +19,8 @@ type trivialChecker struct { } func removeTitleFieldFromProperties(schema map[string]*structpb.Value) { + // TODO: Explain why we need this + // TODO: givse me example about dataclass vs. Pydantic BaseModel properties, ok := schema["properties"] if !ok { return