From 275b1ee41fad82e9363ed267b32303ee06b5f908 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Tue, 21 Oct 2025 13:30:25 +0200 Subject: [PATCH] resolve more suggestions --- src/output_handlers/csv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output_handlers/csv.py b/src/output_handlers/csv.py index ee42e0a..717b35b 100644 --- a/src/output_handlers/csv.py +++ b/src/output_handlers/csv.py @@ -11,7 +11,7 @@ class CsvHandler(BaseHandler): rather than writing the entire JSON document. """ - file_writer: any # I believe aiofiles doesn't expose a type for this + file_writer: object # I believe aiofiles doesn't expose a type for this @classmethod async def create( @@ -23,7 +23,7 @@ class CsvHandler(BaseHandler): Initializes the CSVHandler. Args: - output_path (str): Path to the CSV file to write to. + output_path (Path): Path to the CSV file to write to. **kwargs: Additional keyword arguments. """ obj = await super().create(**kwargs)