From eff169cb5da00f15b12324a167133531899dddae Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 22 Aug 2024 10:17:18 -0700 Subject: [PATCH] style: Format code with consistent indentation and line breaks --- 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 583c8810f..bcc27969d 100755 --- a/tests/basic/test_find_or_blocks.py +++ b/tests/basic/test_find_or_blocks.py @@ -19,7 +19,12 @@ def process_markdown(filename, fh): print(f"@@@ File '{filename}' not found.", "@" * 20, file=fh, flush=True) return except UnicodeDecodeError: - print(f"@@@ File '{filename}' has an encoding issue. Make sure it's UTF-8 encoded.", "@" * 20, file=fh, flush=True) + print( + f"@@@ File '{filename}' has an encoding issue. Make sure it's UTF-8 encoded.", + "@" * 20, + file=fh, + flush=True, + ) return # Split the content into sections based on '####' headers