From c38d482db31212ff89a555e8585067321ae5c1ce Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 23 Aug 2024 10:14:04 -0700 Subject: [PATCH] style: Format code with black --- tests/basic/test_repomap.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_repomap.py b/tests/basic/test_repomap.py index ae7a99ebd..237565c16 100644 --- a/tests/basic/test_repomap.py +++ b/tests/basic/test_repomap.py @@ -441,7 +441,9 @@ class TestRepoMapAllLanguages(unittest.TestCase): # Initialize RepoMap with the sample code base as root io = InputOutput() repomap_root = Path(__file__).parent.parent.parent - repo_map = RepoMap(main_model=self.GPT35, root=str(sample_code_base), io=io, repomap_root=str(repomap_root)) + repo_map = RepoMap( + main_model=self.GPT35, root=str(sample_code_base), io=io, repomap_root=str(repomap_root) + ) # Get all files in the sample code base other_files = [str(f) for f in sample_code_base.rglob("*") if f.is_file()]