Skip to content

Commit f53e7d9

Browse files
committed
review1
1 parent bd6945c commit f53e7d9

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

implement-cowsay/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ The following command lines should work as demonstrated below:
4242
(_(__/ ./ / \_\ \.
4343
(_(___/ \_____)_)
4444
% python3 cow.py --animal fish Turtles are cool too!
45+
4546
usage: cowsay [-h] [--animal {beavis,cheese,cow,daemon,dragon,fox,ghostbusters,kitty,meow,miki,milk,octopus,pig,stegosaurus,stimpy,trex,turkey,turtle,tux}] message [message ...]
4647
cowsay: error: argument --animal: invalid choice: 'fish' (choose from 'beavis', 'cheese', 'cow', 'daemon', 'dragon', 'fox', 'ghostbusters', 'kitty', 'meow', 'miki', 'milk', 'octopus', 'pig', 'stegosaurus', 'stimpy', 'trex', 'turkey', 'turtle', 'tux')
4748
% python3 cow.py --help

implement-cowsay/cow.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def main():
2626
args = parser.parse_args()
2727

2828
message = " ".join(args.message)
29+
2930

3031
# Dynamically call the function for the chosen animal
3132
animal_func = getattr(cowsay, args.animal)

implement-cowsay/requirements.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
cowsay
1+
2+
cowsay
3+
4+

0 commit comments

Comments
 (0)