Skip to content

Commit

Permalink
docs(utils): fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
kazhala committed Feb 1, 2022
1 parent b4de186 commit 5a71825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InquirerPy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def get_style(
>>> from InquirerPy import get_style
>>> from InquirerPy import inquirer
>>> style = get_style({"questionmark": "#ffffff", "answer": "#000000"}, style_override=False)
>>> result = inquirer.confirm(message="Confirm?", style=style)
>>> result = inquirer.confirm(message="Confirm?", style=style).execute()
"""
if not style_override or style is None:
if not style:
Expand Down

0 comments on commit 5a71825

Please sign in to comment.