community[patch]: fix lint (#17984)

This commit is contained in:
Bagatur 2024-02-22 15:15:27 -08:00 committed by GitHub
parent e8633e53c4
commit 9b0b0032c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@ class NeuralDBVectorStore(VectorStore):
vectorstore = NeuralDBVectorStore(db=db) vectorstore = NeuralDBVectorStore(db=db)
""" """
def __init__(self, db): def __init__(self, db: Any) -> None:
self.db = db self.db = db
db: Any = None #: :meta private: db: Any = None #: :meta private: