Skip to content

Commit 17a31c6

Browse files
committed
update
1 parent cfebfd1 commit 17a31c6

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

implement-cowsay/cow.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
parser.add_argument(
99
"--animal",
10-
choices= cowsay.char_names,
10+
choices=cowsay.char_names,
1111
default="cow",
1212
help="The animal to be saying things."
1313
)
@@ -20,6 +20,5 @@
2020

2121
args = parser.parse_args()
2222

23-
print(args.message)
2423
cowsay.char_funcs[args.animal](" ".join(args.message))
2524

0 commit comments

Comments
 (0)