fix: add fix to low level example

This commit is contained in:
Hande 2025-09-02 11:18:22 +03:00
parent e52f9c6a20
commit 0bf8abcc6f
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ from typing import List, Union
from uuid import UUID
from cognee.modules.data.models import Dataset
from cognee.modules.data.methods import create_authorized_dataset
from cognee.modules.data.methods.create_authorized_dataset import create_authorized_dataset
from cognee.modules.data.exceptions import DatasetNotFoundError

View file

@ -73,7 +73,7 @@ def ingest_files(data: List[Any]):
new_company.departments.append(departments_data_points[department_name])
return companies_data_points.values()
return list(companies_data_points.values())
async def main():