From 25076faf4fee6b426599130652c7eb343b4ce75b Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Thu, 4 May 2023 15:28:55 -0700 Subject: [PATCH] nit Signed-off-by: Kevin Su --- flytekit/core/pod_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytekit/core/pod_template.py b/flytekit/core/pod_template.py index d09dc65acc..98ba92af36 100644 --- a/flytekit/core/pod_template.py +++ b/flytekit/core/pod_template.py @@ -13,7 +13,7 @@ class PodTemplate(object): """Custom PodTemplate specification for a Task.""" - pod_spec: "V1PodSpec" = None + pod_spec: Optional["V1PodSpec"] = None primary_container_name: str = PRIMARY_CONTAINER_DEFAULT_NAME labels: Optional[Dict[str, str]] = None annotations: Optional[Dict[str, str]] = None