Skip to content

Commit 3e9bc58

Browse files
Remove return
1 parent 14d3971 commit 3e9bc58

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

labelbox/schema/model_run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ def delete_annotation_groups(self, data_row_ids):
119119
deleteModelRunDataRows(where: {modelRunId: $%s, dataRowIds: $%s})}""" % (
120120
model_run_id_param, data_row_ids_param, model_run_id_param, data_row_ids_param
121121
)
122-
res = self.client.execute(query_str, {
122+
self.client.execute(query_str, {
123123
model_run_id_param: self.model_run_id,
124124
data_row_ids_param: data_row_ids
125125
})
126-
return res

0 commit comments

Comments
 (0)