<aside> 💡 Make sure to read the Standard Documentation Format!
</aside>
We generally follow PEP 0257 (Docstring Conventions). Docstrings are used for:
You'll always write a docstring using this format:
"""One-line summary."""
Or:
"""One-line summary.
Multi-line description.
"""
The beginning line must always be on the same line as the opening """
, and must not wrap.