Remove datatypes from example function
This commit is contained in:
parent
467ffee554
commit
e21ba4b2b1
|
|
@ -114,9 +114,9 @@ def my_function(arg1: type1, arg2: type2) -> returntype:
|
||||||
"""
|
"""
|
||||||
Short description of the function.
|
Short description of the function.
|
||||||
|
|
||||||
:param arg1: (type1) describe what is arg1
|
:param arg1: describe what is arg1
|
||||||
:param arg2: (type2) describe what is arg2
|
:param arg2: describe what is arg2
|
||||||
:return: (returntype) describe what is returned
|
:return: describe what is returned
|
||||||
"""
|
"""
|
||||||
...
|
...
|
||||||
return my_variable
|
return my_variable
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue