Skip to content

Commit

Permalink
Use new f-string feature
Browse files Browse the repository at this point in the history
Co-authored-by: Byron Himes <[email protected]>
  • Loading branch information
Cito and TheByronHimes authored Dec 6, 2023
1 parent e65ee21 commit 99a1c4a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/fixtures/auth_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
def print_auth_key_env() -> None:
"""Print environment setting for the auth key."""
auth_key = generate_jwk().export(private_key=False)
print(f"ARS_AUTH_KEY={auth_key!r}")
ARS_AUTH_KEY = generate_jwk().export(private_key=False)
print(f"{ARS_AUTH_KEY=!r}")


if __name__ == "__main__":
Expand Down

0 comments on commit 99a1c4a

Please sign in to comment.