9 lines
202 B
Plaintext
9 lines
202 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
isort --force-single-line-imports app tests
|
||
|
|
autoflake --recursive --remove-all-unused-imports --remove-unused-variables --in-place app tests
|
||
|
|
black app tests
|
||
|
|
isort app tests
|