Skip to content

Commit

Permalink
community[patch]: fix lint (#17984)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan authored Feb 22, 2024
1 parent e8633e5 commit 9b0b003
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9b0b003

Please sign in to comment.