I wrote several Python 3 modules of the following format:
def some_module():
'''Do something.
Parameters
----------
Returns
-------
'''
# Some code
When I run PyLint or PyLint3 over the file, I get the following error:
************* Module some_module.some_module
C: 1, 0: Missing module docstring (missing-docstring)
What am I doing wrong? Does PyLint require a specific docstring style?