In some places we have docstrings in this style: ```python def automatic_bee_handler(self, species): """ Handles the bees automatically """ species..activate_all_bees() ``` In other places we have this style of docstring: ```python def automatic_bee_handler(self, species): """ Handles the bees automatically """ species..activate_all_bees() ``` It's probably worth being consistent with this.
In some places we have docstrings in this style:
In other places we have this style of docstring:
It's probably worth being consistent with this.