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

View File

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