Skip to content

Commit 079079b

Browse files
committed
Remove none from output
1 parent 9c2819e commit 079079b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

implement-cowsay/cow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def main():
2929

3030
# Dynamically call the function for the chosen animal
3131
animal_func = getattr(cowsay, args.animal)
32-
print(animal_func(message))
32+
animal_func(message)
3333

3434

3535
if __name__ == "__main__":

0 commit comments

Comments
 (0)