Imported Upstream version 3.0.0

This commit is contained in:
Mario Fetka
2021-10-27 08:42:14 +02:00
parent 1d2c07ae63
commit 7401b914a4
39 changed files with 872 additions and 717 deletions

View File

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