File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
set -x
3
3
4
4
# Sort imports one per line, so autoflake can remove unused imports
5
- isort --recursive --force-single-line-imports --thirdparty pydantic_sqlalchemy --apply pydantic_sqlalchemy tests
5
+ isort --recursive --force-single-line-imports --thirdparty pydantic_sqlalchemy --apply ./
6
6
sh ./scripts/format.sh
Original file line number Diff line number Diff line change 1
1
#! /bin/sh -e
2
2
set -x
3
3
4
- autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place pydantic_sqlalchemy tests --exclude=__init__.py
5
- black pydantic_sqlalchemy tests
6
- isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --thirdparty pydantic_sqlalchemy --apply pydantic_sqlalchemy tests
4
+ autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place ./ --exclude=__init__.py
5
+ black ./
6
+ isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --thirdparty pydantic_sqlalchemy --apply ./
You can’t perform that action at this time.
0 commit comments