Imported Upstream version 2.2.1

This commit is contained in:
Mario Fetka
2021-10-26 14:11:39 +02:00
parent 27b4629279
commit 1d2c07ae63
39 changed files with 720 additions and 875 deletions

View File

@@ -1,11 +1,11 @@
.PHONY: format
format:
black src tests *.py && isort src tests *.py
black src tests *.py && isort -rc src tests *.py
.PHONY: lint
lint:
flake8 src tests *.py && isort --check-only src tests *.py && black --check src tests *.py && mypy src tests
flake8 src tests *.py && isort --check-only -rc src tests *.py && black --check src tests *.py && mypy src tests
.PHONY: test
test: