mirror of
https://github.com/PaiGramTeam/sqlmodel.git
synced 2024-11-22 15:37:33 +00:00
7 lines
214 B
Bash
Executable File
7 lines
214 B
Bash
Executable File
#!/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
|