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