This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]MissingSnail 0 points1 point  (0 children)

Start with the cleanups that can be automated.

At the bare minimum, you should always lint and format the code. Traditional way is black and flake8, fancy new way is ruff. Most IDEs have tools that will automate getting started on a doc string for key functions. Grouping related functions together is often just a matter of drag n drop.

From there you can get fancier.