community[patch]: fix lint (#17984)

pull/17302/head^2
Bagatur 4 months ago committed by GitHub
parent e8633e53c4
commit 9b0b0032c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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:

Loading…
Cancel
Save