From 7eb35139788c3fca235a4cc77892265d101929fb Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Mon, 20 Dec 2021 14:38:21 -0800 Subject: [PATCH] Lint: remove f-string misuse (#788) Signed-off-by: Eduardo Apolinario --- flytekit/clis/flyte_cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytekit/clis/flyte_cli/main.py b/flytekit/clis/flyte_cli/main.py index 5686854fad..438e91141f 100644 --- a/flytekit/clis/flyte_cli/main.py +++ b/flytekit/clis/flyte_cli/main.py @@ -624,7 +624,7 @@ def _flyte_cli(ctx, host, config, project, domain, name, cacert, insecure): Command line tool for interacting with all entities on the Flyte Platform. """ if cacert and insecure: - raise _user_exceptions.FlyteValidationException(f"Should not pass both certificate and insecure options!") + raise _user_exceptions.FlyteValidationException("Should not pass both certificate and insecure options!") ########################################################################################################################