reformat 285 B

123456789101112
  1. #!/bin/bash
  2. set -x
  3. # python style checks rely on `isort` in path
  4. if ! command -v isort &> /dev/null
  5. then
  6. echo "Skip Python imports linting, since 'isort' is not available. Please install it with 'pip install isort'."
  7. else
  8. isort --settings ./.github/linters/.isort.cfg ./
  9. fi