reformat 203 B

123456789101112
  1. #!/bin/bash
  2. set -x
  3. # python style checks rely on `ruff` in path
  4. if ! command -v ruff &> /dev/null; then
  5. echo "Installing Ruff ..."
  6. pip install ruff
  7. fi
  8. # run ruff linter
  9. ruff check --fix ./api