Fix the error for using additional user_id

This commit is contained in:
jetli 2024-10-23 04:24:12 +00:00
parent 2013d45e86
commit 0a0c0d128d
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
/deploy/.* /deploy/.*
*.log *.log
*.pyc *.pyc
freedev.code-workspace

View File

@ -5,7 +5,7 @@ from app.central_storage.backend.business.document_manager import (
class DocumentHub: class DocumentHub:
def __init__(self, ): def __init__(self, ):
self.document_manager = DocumentManager(self.user_id) self.document_manager = DocumentManager()
return return
async def retrieve_document_info(self, document_id: str): async def retrieve_document_info(self, document_id: str):