Make isort compatible with Black

The isort tool is not compatible with Black by default. This leads to a
tug of war between these tools, when we run `make lint-apply` -> `make
lint`. Fix this by forcing isort to be compatible with Black.
This commit is contained in:
Alex Pyrgiotis 2023-07-28 18:56:16 +03:00
parent 81811e0aac
commit 9768714b4a
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -45,6 +45,9 @@ pytest-qt = "^4.2.0"
pytest-cov = "^3.0.0"
strip-ansi = "*"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=1.1.4"]
build-backend = "poetry.masonry.api"