lint code

This commit is contained in:
phernandez
2025-02-12 22:39:22 -06:00
parent c394d682e1
commit 28513c8b8d
29 changed files with 35 additions and 89 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ class EntityService(BaseService[EntityModel]):
entity_markdown = await self.entity_parser.parse_file(file_path)
# create entity
created_entity = await self.create_entity_from_markdown(file_path, entity_markdown)
await self.create_entity_from_markdown(file_path, entity_markdown)
# add relations
entity = await self.update_entity_relations(file_path, entity_markdown)
+1 -1
View File
@@ -1,6 +1,6 @@
"""Base service class."""
from typing import TypeVar, Generic, List, Sequence
from typing import TypeVar, Generic
from basic_memory.models import Base