---
syntax: bash
tags: [ python, development ]
---
# Formats the python code of the specified file or directory:
black <path>

# Checks if the code is already well-formatted:
black --check <path>

# Show the changes that would be applied to the code:
black --diff <path>
