While adding docstrings I noticed two likely pre-existing bugs in DBEsoFileCollection db_esofile.py.
count() computes len(self._db_eso_files) but doesn't return it.
reverse() calls reversed(self._db_eso_files) but doesn't assign the result back or reverse in place.
These are outside the scope of a docstring fix, so I left them untouched, but flagging them since they look broken.
While adding docstrings I noticed two likely pre-existing bugs in DBEsoFileCollection db_esofile.py.
count() computes len(self._db_eso_files) but doesn't return it.
reverse() calls reversed(self._db_eso_files) but doesn't assign the result back or reverse in place.
These are outside the scope of a docstring fix, so I left them untouched, but flagging them since they look broken.