mirror of
https://github.com/RYDE-WORK/full-stack-fastapi-template.git
synced 2026-01-19 21:23:36 +08:00
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
|