chore: avoid implicit optional in type annotations of method (#8727)

This commit is contained in:
Bowen Liang 2024-10-09 14:36:43 +08:00 committed by GitHub
commit 240b66d737
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 91 additions and 71 deletions

View file

@ -1,4 +1,5 @@
import logging
from typing import Optional
from core.rag.extractor.extractor_base import BaseExtractor
from core.rag.models.document import Document
@ -17,7 +18,7 @@ class UnstructuredEpubExtractor(BaseExtractor):
def __init__(
self,
file_path: str,
api_url: str = None,
api_url: Optional[str] = None,
):
"""Initialize with file path."""
self._file_path = file_path