7 lines
171 B
Bash
Executable File
7 lines
171 B
Bash
Executable File
#!/bin/sh -e
|
|
set -x
|
|
|
|
# Sort imports one per line, so autoflake can remove unused imports
|
|
isort --recursive --force-single-line-imports --apply app
|
|
sh ./scripts/format.sh
|