format.sh 174 B

123456
  1. #!/bin/sh -e
  2. set -x
  3. autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place app --exclude=__init__.py
  4. black app
  5. isort --recursive --apply app