From 68670865c6f27a9cabe125b7af96d7561ba675bc Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Fri, 10 Jun 2022 22:12:51 +0100 Subject: [PATCH] Chore: run linter --- pyproject.toml | 1 - tests/test_version_config.py | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9eb601e..1feb8c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,6 @@ exclude = "extern" [tool.isort] profile = "black" - [tool.pdm] [tool.pdm.dev-dependencies] dev = [ diff --git a/tests/test_version_config.py b/tests/test_version_config.py index bc78ac7..5c484e8 100644 --- a/tests/test_version_config.py +++ b/tests/test_version_config.py @@ -35,7 +35,9 @@ class TestDefault: @pytest.mark.parametrize( - "new_project, python_version", GOOD_NODE_PYTHON_VERSIONS, indirect=["new_project"] + "new_project, python_version", + GOOD_NODE_PYTHON_VERSIONS, + indirect=["new_project"], ) @pytest.mark.parametrize("config", [{"path": "other-package.json"}, {}]) def test_read_correct(self, new_project, python_version, config):