Skip to content

Commit

Permalink
Lint: remove f-string misuse (#788)
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario authored Dec 20, 2021
1 parent ab04891 commit 7eb3513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/clis/flyte_cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!")


########################################################################################################################
Expand Down

0 comments on commit 7eb3513

Please sign in to comment.