Empty lines at the end of a docstring are not allowed on Numpydoc
For instance this docstring:
def my_func() -> str:
"""This is a function.
Returns
-------
str
A greeting message.
Notes
-----
**The next line should not be empty nor exist.**
"""
return "Hello"
Because of GL02