Closed XenonPy closed 2 months ago
Functions appear to have comments describing what they do...
def do_something(x): # this does something run code more code
However, as specified in PEP 257, these should be formatted as docstrings:
def do_something(x): """ This does something. """ run code more code
https://peps.python.org/pep-0257/
most of those commented functions are meant to be internal
since they have an underscore before their name
oops 😅
yeah i missed that
Functions appear to have comments describing what they do...
However, as specified in PEP 257, these should be formatted as docstrings:
https://peps.python.org/pep-0257/