You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  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