mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
7 lines
169 B
Bash
7 lines
169 B
Bash
|
#!/bin/sh -e
|
||
|
set -x
|
||
|
|
||
|
# Sort imports one per line, so autoflake can remove unused imports
|
||
|
isort --recursive --force-single-line-imports --apply .
|
||
|
sh ./scripts/format.sh
|