Skip to content

Commit

Permalink
Update README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum-quirks authored Jun 19, 2021
1 parent 3f06ed6 commit ac41404
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

|build-status| |coverage| |license| |wheel| |pyversion| |pyimp|

:Version: 2021.1
:Version: 2021.2
:Web: http://quo.readthedocs.io/
:Download: http://pypi.org/project/quo
:Source: http://github.com/secretum-inc/quo
Expand Down Expand Up @@ -54,7 +54,7 @@ You can install quo via the Python Package Index (PyPI)

import quo
@quo.command()
@quo.option("--name", prompt="What is your name?:")
@quo.app("--name", prompt="What is your name?:")
def hello(name):
quo.echo(f'Hello {name}!')
if __name__ == '__main__':
Expand All @@ -67,9 +67,9 @@ You can install quo via the Python Package Index (PyPI)

import quo
@quo.command()
@quo.option("--count", default=1, help="The number of times the feedback is printed.")
@quo.option("--name", prompt="What is your name", help="This prompts the user to input their name.")
@quo.option("--profession", prompt="What is your profession", help="This prompts user to input their proffession")
@quo.app("--count", default=1, help="The number of times the feedback is printed.")
@quo.app("--name", prompt="What is your name", help="This prompts the user to input their name.")
@quo.app("--profession", prompt="What is your profession", help="This prompts user to input their proffession")
def survey(count, name, proffession):

for _ in range(count):
Expand Down

0 comments on commit ac41404

Please sign in to comment.