Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 237 Bytes

File metadata and controls

27 lines (19 loc) · 237 Bytes

python fun

  • Automatically reformats
black src/.
  • Organize Imports
isort src/.
  • Check Style and Errors
flake8 src/.
  • Ruff = format + lint + fix
ruff check --fix .
ruff format .
pytest