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