Skip to content

Commit

Permalink
Fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
danixeee committed May 12, 2020
1 parent c1f82a4 commit 2e03639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taf/keystore.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def load_tuf_private_key(key_str, key_name, scheme=DEFAULT_RSA_SIGNATURE_SCHEME)

def new_public_key_cmd_prompt(scheme):
def _enter_and_check_key(scheme):
pem = getpass(f"Enter public key without its header and footer\n")
pem = getpass("Enter public key without its header and footer\n")
pem = _from_public_pem(pem)
try:
key = import_rsakey_from_pem(pem, scheme)
Expand Down

0 comments on commit 2e03639

Please sign in to comment.