From 4b0820ef157dc237cb62d26520069bf5365dadf9 Mon Sep 17 00:00:00 2001 From: ayush chaurasia Date: Tue, 16 Apr 2024 12:09:18 +0530 Subject: [PATCH] ruff --- python/python/lancedb/remote/table.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/python/lancedb/remote/table.py b/python/python/lancedb/remote/table.py index 672137c6..d17410f8 100644 --- a/python/python/lancedb/remote/table.py +++ b/python/python/lancedb/remote/table.py @@ -354,9 +354,9 @@ class RemoteTable(Table): params["on"] = merge._on[0] params["when_matched_update_all"] = str(merge._when_matched_update_all).lower() if merge._when_matched_update_all_condition is not None: - params["when_matched_update_all_filt"] = ( - merge._when_matched_update_all_condition - ) + params[ + "when_matched_update_all_filt" + ] = merge._when_matched_update_all_condition params["when_not_matched_insert_all"] = str( merge._when_not_matched_insert_all ).lower() @@ -364,9 +364,9 @@ class RemoteTable(Table): merge._when_not_matched_by_source_delete ).lower() if merge._when_not_matched_by_source_condition is not None: - params["when_not_matched_by_source_delete_filt"] = ( - merge._when_not_matched_by_source_condition - ) + params[ + "when_not_matched_by_source_delete_filt" + ] = merge._when_not_matched_by_source_condition self._conn._client.post( f"/v1/table/{self._name}/merge_insert/",