Skip to content

Commit 6500a80

Browse files
committed
matching the messages in readme
1 parent 028957b commit 6500a80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

implement-cowsay/cow.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
# cowsay.cow(" ".join(sys.argv[1:]))
55

66
parser = argparse.ArgumentParser(
7-
prog="custom-cowsay",
8-
description="A custom cowsay can parse in animal in command line"
7+
prog="cowsay",
8+
description="Make animals say things"
99
)
1010

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")
11+
parser.add_argument("--animal", choices=cowsay.char_names, help="The animal to be saying things.")
12+
parser.add_argument("message", nargs="+", help="The message to say.")
1313

1414
args = parser.parse_args()
1515

0 commit comments

Comments
 (0)