ifndefJOSH / usurl

GNU General Public License v3.0
1 stars 0 forks source link

Add Python documentation comments #3

Open ifndefJOSH opened 1 year ago

ifndefJOSH commented 1 year ago

In Python, documentation comments for functions look as follows:

def foo():
    '''
A description of the function body
    '''
    # function body
    pass

Please review the functions in main.py and add comments as to what they do.