mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
6 lines
169 B
Bash
Executable file
6 lines
169 B
Bash
Executable file
#!/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
|