Skip to content

Commit

Permalink
Fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Nov 18, 2024
1 parent c2085a3 commit 0422b80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leo_fw/leo_fw/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def query_yes_no(question: str, default: str = "yes") -> bool:
return valid[default]
if choice in valid:
return valid[choice]
print("Please respond with 'yes' or 'no' " "(or 'y' or 'n').")
print("Please respond with 'yes' or 'no' (or 'y' or 'n').")


def prompt_options(options: list[tuple[str, T]], default: int = 1) -> T:
Expand Down

0 comments on commit 0422b80

Please sign in to comment.