back to not making breaks

This commit is contained in:
Yannick Stephan
2025-02-16 15:08:50 +01:00
parent 0a8c94a1e0
commit 0e7aff96bb
10 changed files with 58 additions and 11 deletions

View File

@@ -18,6 +18,13 @@ from ..base import (
from ..namespace import NameSpace, is_namespace
from ..utils import logger
from ..types import KnowledgeGraph, KnowledgeGraphNode, KnowledgeGraphEdge
import pipmaster as pm
if not pm.is_installed("pymongo"):
pm.install("pymongo")
if not pm.is_installed("motor"):
pm.install("motor")
try:
from motor.motor_asyncio import AsyncIOMotorClient
@@ -214,9 +221,6 @@ class MongoDocStatusStorage(DocStatusStorage):
# Implement the method here
pass
async def update_doc_status(self, data: dict[str, Any]) -> None:
raise NotImplementedError
@final
@dataclass