From 70727332eecbbf9a6fa5d98d1a63205dd1cc68ea Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Wed, 27 Aug 2025 18:08:16 +0200 Subject: [PATCH] ruff format --- cognee/api/v1/cognify/cognify.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cognee/api/v1/cognify/cognify.py b/cognee/api/v1/cognify/cognify.py index cf3aa254a..42f1b51e3 100644 --- a/cognee/api/v1/cognify/cognify.py +++ b/cognee/api/v1/cognify/cognify.py @@ -190,7 +190,9 @@ async def cognify( if temporal_cognify: tasks = await get_temporal_tasks(user, chunker, chunk_size) else: - tasks = await get_default_tasks(user, graph_model, chunker, chunk_size, ontology_file_path, custom_prompt) + tasks = await get_default_tasks( + user, graph_model, chunker, chunk_size, ontology_file_path, custom_prompt + ) # By calling get pipeline executor we get a function that will have the run_pipeline run in the background or a function that we will need to wait for pipeline_executor_func = get_pipeline_executor(run_in_background=run_in_background)