Add back black to dev dependencies

This commit is contained in:
Kien Dang 2023-08-10 01:18:16 +08:00
parent 06d839932f
commit c9e9cfe9c6
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ tests:
.PHONY: format ## Format code
format:
tox -e pre-commit
black graphene_django examples setup.py
.PHONY: lint ## Lint code
lint:

View File

@ -26,6 +26,7 @@ tests_require = [
dev_requires = [
"black",
"ruff",
"pre-commit",
] + tests_require