2021-05-04 13:39:40 +02:00
|
|
|
# find all files with unused imports, then hand them off to autoimport
|
|
|
|
flake8 \
|
|
|
|
--isolated \
|
|
|
|
--select=F401 \
|
|
|
|
--format='%(path)s' \
|
|
|
|
--exclude=__init__.py \
|
|
|
|
| sort \
|
|
|
|
| uniq \
|
|
|
|
| xargs autoimport
|
|
|
|
|
|
|
|
# auto-sort imports in all files
|
2021-04-29 13:14:25 +02:00
|
|
|
isort -y
|
2021-05-04 13:39:40 +02:00
|
|
|
|
|
|
|
# format code
|
2021-04-29 13:14:25 +02:00
|
|
|
black jubeatools
|