What is the docstring convention when a function doesn't return anything?
For example:
def f(x):
"""Prints the element given as input
Args:
x: any element
Returns:
"""
print "your input is %s" % x
return
What should I add after Returns:
in the docstring? Nothing as it is now?