Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 848d53a

Browse files
Update client.py
1 parent 8f4187d commit 848d53a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

labelpandas/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ def create_data_rows_from_table(self, df:pd.core.frame.DataFrame, lb_dataset:lab
5858
# Create a dictionary where {key=global_key : value=labelbox_upload_dictionary} - this is unique to Pandas
5959
global_key_to_upload_dict = connector.create_upload_dict(
6060
df=df, lb_client=self.lb_client, base_client=self.base_client,
61-
row_data_col=row_data_col, global_key_col=global_key_col,
62-
external_id_col=external_id_col, metadata_index=metadata_index, divider=divider, verbose=verbose
61+
row_data_col=row_data_col, global_key_col=global_key_col, external_id_col=external_id_col,
62+
metadata_index=metadata_index, local_files=local_files, divider=divider, verbose=verbose
6363
)
6464

6565
# Upload your data rows to Labelbox
6666
upload_results = self.base_client.batch_create_data_rows(
6767
dataset=lb_dataset, global_key_to_upload_dict=global_key_to_upload_dict,
68-
skip_duplicates=skip_duplicates, local_files=local_files, divider=divider, verbose=verbose
68+
skip_duplicates=skip_duplicates, divider=divider, verbose=verbose
6969
)
7070

7171
return upload_results

0 commit comments

Comments
 (0)