Bonus materials, exercises, and example projects for our Python tutorials.
We use flake8 and black to ensure a consistent code style for all of our sample code in this repository.
Run the following commands to validate your code against the linters:
$ flake8
$ black --check .
To automatically re-format your code to be consistent with our code style guidelines, run black in the repository root folder:
$ black .