We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 028957b commit 6500a80Copy full SHA for 6500a80
implement-cowsay/cow.py
@@ -4,12 +4,12 @@
4
# cowsay.cow(" ".join(sys.argv[1:]))
5
6
parser = argparse.ArgumentParser(
7
- prog="custom-cowsay",
8
- description="A custom cowsay can parse in animal in command line"
+ prog="cowsay",
+ description="Make animals say things"
9
)
10
11
-parser.add_argument("--animal", choices=cowsay.char_names, help="Parsing animal name after the flag")
12
-parser.add_argument("message", nargs="+", help="Message for the animal to say")
+parser.add_argument("--animal", choices=cowsay.char_names, help="The animal to be saying things.")
+parser.add_argument("message", nargs="+", help="The message to say.")
13
14
args = parser.parse_args()
15
0 commit comments