chore: Set default value for ttl_seconds to None in CassandraVectorStoreComponent
This commit is contained in:
parent
a4953c6f4f
commit
79a4cce9a4
1 changed files with 1 additions and 1 deletions
|
|
@ -139,7 +139,7 @@ class CassandraVectorStoreComponent(LCVectorStoreComponent):
|
|||
cluster_kwargs=self.cluster_kwargs,
|
||||
)
|
||||
|
||||
if not self.ttl_seconds:
|
||||
if not self.ttl_seconds: # type: ignore
|
||||
self.ttl_seconds = None
|
||||
|
||||
documents = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue