diff options
-rw-r--r-- | poetry.lock | 20 | ||||
-rw-r--r-- | pyproject.toml | 1 |
2 files changed, 20 insertions, 1 deletions
diff --git a/poetry.lock b/poetry.lock index 1c97d5b..ba230b8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -78,6 +78,24 @@ files = [ ] [[package]] +name = "isort" +version = "5.12.0" +description = "A Python utility / library to sort Python imports." +category = "main" +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 = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." @@ -218,4 +236,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "38150922c883e955841f915d7e837a0b8cf68878210c1013089e34c58dee3441" +content-hash = "cb7d3903b9ba0286dc6b5affa2ec4c50b2bb193fbf5037cfc4fc99dd64c3657c" diff --git a/pyproject.toml b/pyproject.toml index ffa45fe..88238db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ readme = "README" [tool.poetry.dependencies] python = "^3.9" +isort = "^5.12.0" [tool.poetry.group.dev.dependencies] black = "^23.1.0" |