From e24f1052ac238aefaa07115508bfa80f01398ad4 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Tue, 31 Mar 2026 22:56:32 +0200 Subject: [PATCH] add tons of todos --- tests/assert_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/assert_helper.py b/tests/assert_helper.py index 679fe6f2..42756ad6 100644 --- a/tests/assert_helper.py +++ b/tests/assert_helper.py @@ -50,6 +50,6 @@ def prepare_test_output_directory() -> bool: return is_directory(test_outputs_directory) -def create_media_reader(file_path : str) -> partial[bytes]: +def create_media_reader(file_path : str) -> partial[bytes]: #todo: kill this file_buffer = io.BytesIO(open(file_path, 'rb').read()) return partial(file_buffer.read, 1024)