mirror of
https://github.com/PaiGramTeam/sqlmodel.git
synced 2024-11-22 15:37:33 +00:00
7 lines
214 B
Bash
7 lines
214 B
Bash
|
#!/bin/sh -e
|
||
|
set -x
|
||
|
|
||
|
autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place sqlmodel docs_src tests --exclude=__init__.py
|
||
|
black sqlmodel tests docs_src
|
||
|
isort sqlmodel tests docs_src
|