Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kwadhwa18 committed Aug 14, 2023
1 parent 1dc11fc commit 36cdb68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libs/langchain/langchain/document_loaders/rocksetdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(
self.request_model = QueryRequestSql

try:
self.client.set_application('langchain')
self.client.set_application("langchain")
except AttributeError:
# ignore
pass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,11 @@ def __init__(
self.sync = sync

try:
self.client.set_application('langchain')
self.client.set_application("langchain")
except AttributeError:
# ignore
pass


if not self._collection_exists():
self._create_collection()
self._wait_until_collection_created()
Expand Down
2 changes: 1 addition & 1 deletion libs/langchain/langchain/vectorstores/rocksetdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __init__(
self._workspace = workspace

try:
self._client.set_application('langchain')
self._client.set_application("langchain")
except AttributeError:
# ignore
pass
Expand Down

0 comments on commit 36cdb68

Please sign in to comment.