From a2888cf1649ac86a50234fc06f64a6997a8021e5 Mon Sep 17 00:00:00 2001 From: WebOfNakedFancies Date: Wed, 13 Mar 2024 00:29:12 +0100 Subject: [PATCH] Explicitly import exit from sys (#2259) Signed-off-by: WebOfNakedFancies --- flytekit/bin/entrypoint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/flytekit/bin/entrypoint.py b/flytekit/bin/entrypoint.py index afa9e0fb3c..add2b40ad8 100644 --- a/flytekit/bin/entrypoint.py +++ b/flytekit/bin/entrypoint.py @@ -8,6 +8,7 @@ import subprocess import tempfile import traceback as _traceback +from sys import exit from typing import List, Optional import click as _click