Skip to content

Commit

Permalink
spacing to keep flake8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
trishankatdatadog committed Oct 21, 2024
1 parent 7782af5 commit 8e23d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repository_service_tuf/cli/admin/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def _prompt_public_key() -> str:
"""Prompt for a string using prompt_toolkit."""

# Show only directories, or files ending with ".pub"
def file_filter(f): # pragma: no cover
def file_filter(f): # pragma: no cover
return os.path.isdir(f) or os.path.isfile(f) and f.endswith(".pub")

message = prompt_toolkit.HTML("Enter file path to a <b>PUBLIC</b> key: ")
Expand Down

0 comments on commit 8e23d39

Please sign in to comment.