Skip to content

Commit

Permalink
chore(implementation): removed unused f strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Divan009 committed Oct 1, 2024
1 parent eabc633 commit d2eedb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/clients/python/template/src/credentials.py.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class Credentials:
raise ApiValueError(e)

if parsed_url.netloc is None and parsed_url.path is None:
raise ApiValueError(f"Invalid issuer")
raise ApiValueError("Invalid issuer")

if parsed_url.scheme == "":
parsed_url = urlparse(f"https://{issuer}")
Expand Down

0 comments on commit d2eedb7

Please sign in to comment.