-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.py
39 lines (28 loc) · 890 Bytes
/
docs.py
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
34
35
36
37
38
39
#!!! NOT TO BE EXECUTED !!!
"""
HELLO THERE AND WELCOME TO THE PROJECT,
I know you might be very very eager to start working on the project, but..
There are some rules about this:
1. Please look up the issues and try to work on them priority wise
2. <fill in your rule here>
3. If a file has more than 200 lines of code, it is a BIG file, try and split it
4. Use proper docstrings for every class and every function.
4.1. The format for function is
'''
<Summary>
Parameters:
<arg1> (<type>): <description>
<arg2> (<type>): <description>
<arg3> (<type>): <description>
...
Returns:
<type>: <description>
'''
this will later be visible in help(function)
5. But follow the following documentation conventions
* Highlighted Comment
! Warning Comment
? In Doubt
TODO: A Todo ofcourse
BETTER DOCUMENTATION == LONGER CODE LIFE
"""