-
Notifications
You must be signed in to change notification settings - Fork 97
Closed
Labels
Description
TravisCI doctring linting reports loads of warnings like this:
planemo/conda.py WARNING: __all__ is defined as a list, this means pydocstyle cannot reliably detect contents of the __all__ variable, because it can be mutated. Change __all__ to be an (immutable) tuple, to remove this warning. Note, pydocstyle uses __all__ to detect which definitions are public, to warn if public definitions are missing docstrings. If __all__ is a (mutable) list, pydocstyle cannot reliably assume its contents. pydocstyle will proceed assuming __all__ is not mutated.
Switching __all__ from a list to a tuple ought to fix this?
Reactions are currently unavailable