Many of the docstrings are incomplete and/or in the wrong place. For example, some of docstrings are at the end of a function, which doesn't trigger when help(function) is called. Additionally, some of the minor functions do not follow the standard convention of describing the function in the class def, then the input rules for __init__ and __call__.
Many of the docstrings are incomplete and/or in the wrong place. For example, some of docstrings are at the end of a function, which doesn't trigger when
help(function)
is called. Additionally, some of the minor functions do not follow the standard convention of describing the function in the class def, then the input rules for__init__
and__call__
.