Add isort as dev dependency

This commit is contained in:
Wiktor Zykubek 2023-07-11 15:29:17 +02:00
parent d72d8c751d
commit 1e149f9993
No known key found for this signature in database
GPG Key ID: 0DAA9DC01449FCA2
2 changed files with 19 additions and 1 deletions

19
poetry.lock generated
View File

@ -125,6 +125,23 @@ docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker
perf = ["ipython"]
testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"]
[[package]]
name = "isort"
version = "5.12.0"
description = "A Python utility / library to sort Python imports."
optional = false
python-versions = ">=3.8.0"
files = [
{file = "isort-5.12.0-py3-none-any.whl", hash = "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6"},
{file = "isort-5.12.0.tar.gz", hash = "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504"},
]
[package.extras]
colors = ["colorama (>=0.4.3)"]
pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"]
plugins = ["setuptools"]
requirements-deprecated-finder = ["pip-api", "pipreqs"]
[[package]]
name = "platformdirs"
version = "3.8.1"
@ -295,4 +312,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
[metadata]
lock-version = "2.0"
python-versions = "~3.11"
content-hash = "436ab71902b64b46e2accf499e934aa2d4809d16fed203f44f26ed621aeeebbe"
content-hash = "8a46b91bea175b77beffbe87a22e0fe9c21ea080cd3c8b0952d44233a24c3324"

View File

@ -27,6 +27,7 @@ PySide6 = "^6.5.1.1"
[tool.poetry.group.dev.dependencies]
yapf = "^0.40.1"
isort = "^5.12.0"
[tool.yapf]
based_on_style = "pep8"