1 2 3 4 5 6 7 8 9 10#!/bin/sh -e set -x export SOURCE_FILES="mongox tests" poetry run autoflake --in-place --recursive $SOURCE_FILES poetry run isort --project=orm $SOURCE_FILES poetry run black $SOURCE_FILES
1 2 3 4 5 6 7 8 9 10
#!/bin/sh -e set -x export SOURCE_FILES="mongox tests" poetry run autoflake --in-place --recursive $SOURCE_FILES poetry run isort --project=orm $SOURCE_FILES poetry run black $SOURCE_FILES