-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.py
More file actions
33 lines (28 loc) · 790 Bytes
/
Copy pathsample.py
File metadata and controls
33 lines (28 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
def function(arg1, arg2, arg3):
"""
Hello, func
korem ipsum dolor sit amet,
:param string arg1: First argument
:param arg2: Second argument
:type args2: list[int]
:param arg3: Third argument
:type args3: dict[str, int]
:return: Return value
:rtype: str or None
:raises ValueError: if arg1 is empty string. test ok function
"""
pass
def function2(arg1, arg2, arg3):
"""
OK, func
jonathan has dolor sit amet,
:param string arg1: First argument
:param arg2: Second argument
:type args2: list[int]
:param arg3: Third argument
:type args3: dict[str, int]
:return: Return value
:rtype: str or None
:raises ValueError: if arg1, is empty string.
"""
pass