mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 16:03:00 +08:00
7 lines
168 B
Bash
7 lines
168 B
Bash
|
#!/bin/sh -e
|
||
|
set -x
|
||
|
|
||
|
autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place . --exclude=__init__.py
|
||
|
black .
|
||
|
isort --recursive --apply .
|