From 4beacbf65dfa7027770c8b860dba97398d5cd39a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Wed, 9 Aug 2023 00:04:23 +0200 Subject: [PATCH] Reformat with new black version --- e2e_tests/test_repos_find.py | 1 - e2e_tests/test_repos_find_remote.py | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/e2e_tests/test_repos_find.py b/e2e_tests/test_repos_find.py index 588cb31..5b5f6ad 100644 --- a/e2e_tests/test_repos_find.py +++ b/e2e_tests/test_repos_find.py @@ -163,7 +163,6 @@ def test_repos_find(configtype, exclude, default_format): @pytest.mark.parametrize("configtype", ["toml", "yaml"]) def test_repos_find_in_root(configtype, default_format): with TempGitRepository() as repo_dir: - args = ["repos", "find", "local", repo_dir] if not default_format: args += ["--format", configtype] diff --git a/e2e_tests/test_repos_find_remote.py b/e2e_tests/test_repos_find_remote.py index 19c9560..5d37611 100644 --- a/e2e_tests/test_repos_find_remote.py +++ b/e2e_tests/test_repos_find_remote.py @@ -43,7 +43,9 @@ def test_repos_find_remote_invalid_provider(use_config): assert cmd.returncode != 0 assert len(cmd.stdout) == 0 if not use_config: - assert re.match(".*invalid value 'thisproviderdoesnotexist' for.*provider", cmd.stderr) + assert re.match( + ".*invalid value 'thisproviderdoesnotexist' for.*provider", cmd.stderr + ) @pytest.mark.parametrize("provider", PROVIDERS)