8558cf00a2
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
7 lines
174 B
Bash
Executable File
7 lines
174 B
Bash
Executable File
#!/bin/sh -e
|
|
set -x
|
|
|
|
autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place app --exclude=__init__.py
|
|
black app
|
|
isort --recursive --apply app
|