From f2fa99b79f179f3cf54dc5981abd7b5ab29df4d2 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 22 Aug 2024 09:42:05 -0700 Subject: [PATCH] style: format code with linter --- tests/basic/test_find_or_blocks.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_find_or_blocks.py b/tests/basic/test_find_or_blocks.py index 05611968c..cd68f17f3 100755 --- a/tests/basic/test_find_or_blocks.py +++ b/tests/basic/test_find_or_blocks.py @@ -7,6 +7,7 @@ import sys from aider.coders.base_coder import all_fences from aider.coders.editblock_coder import find_original_update_blocks + def process_markdown(filename, fh): try: with open(filename, "r") as file: @@ -60,6 +61,10 @@ def process_markdown(filename, fh): if __name__ == "__main__": if len(sys.argv) != 2: - print(json.dumps({"error": "Usage: python testsr.py "}, indent=4), file=sys.stdout, flush=True) + print( + json.dumps({"error": "Usage: python testsr.py "}, indent=4), + file=sys.stdout, + flush=True, + ) else: process_markdown(sys.argv[1], sys.stdout)