Skip to content

Commit 079079b

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)