bugfix pyupgrade call: Exclude files form: .tox

pull/7/head
JensDiemer 2020-10-17 19:46:00 +02:00
rodzic 4d183f34b3
commit 43df8508fe
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -45,7 +45,7 @@ lint: ## Run code formatters and linter
fix-code-style: ## Fix code formatting
poetry run flynt --line_length=${MAX_LINE_LENGTH} .
poetry run pyupgrade --exit-zero-even-if-changed --py3-plus --py36-plus --py37-plus `find . -name "*.py" -type f`
poetry run pyupgrade --exit-zero-even-if-changed --py3-plus --py36-plus --py37-plus `find . -name "*.py" -type f -not -path "./.tox/*"`
poetry run isort .
poetry run autopep8 --aggressive --aggressive --in-place --recursive .