mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-29 00:11:16 -05:00
7 lines
211 B
Bash
Executable File
7 lines
211 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 --thirdparty fastapi --apply fastapi tests docs/src
|
|
sh ./scripts/format.sh
|