remove bare list, dict, Sequence, None, Any (#25058)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
Asuka Minato
2025-09-06 04:32:23 +09:00
committed by GitHub
parent 2b0695bdde
commit a78339a040
306 changed files with 787 additions and 817 deletions

View File

@@ -32,11 +32,11 @@ class DatasetDocumentStore:
}
@property
def dataset_id(self) -> Any:
def dataset_id(self):
return self._dataset.id
@property
def user_id(self) -> Any:
def user_id(self):
return self._user_id
@property
@@ -59,7 +59,7 @@ class DatasetDocumentStore:
return output
def add_documents(self, docs: Sequence[Document], allow_update: bool = True, save_child: bool = False) -> None:
def add_documents(self, docs: Sequence[Document], allow_update: bool = True, save_child: bool = False):
max_position = (
db.session.query(func.max(DocumentSegment.position))
.where(DocumentSegment.document_id == self._document_id)
@@ -195,7 +195,7 @@ class DatasetDocumentStore:
},
)
def delete_document(self, doc_id: str, raise_error: bool = True) -> None:
def delete_document(self, doc_id: str, raise_error: bool = True):
document_segment = self.get_document_segment(doc_id)
if document_segment is None:
@@ -207,7 +207,7 @@ class DatasetDocumentStore:
db.session.delete(document_segment)
db.session.commit()
def set_document_hash(self, doc_id: str, doc_hash: str) -> None:
def set_document_hash(self, doc_id: str, doc_hash: str):
"""Set the hash for a given doc_id."""
document_segment = self.get_document_segment(doc_id)