Skip to content

Commit 3e01c76

Browse files
committed
restore rename
1 parent 957ff0e commit 3e01c76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bigframes/operations/blob.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -926,10 +926,10 @@ def pdf_extract(
926926
) from e
927927

928928
res_df = bpd.DataFrame({"status": status_series, "content": content_series})
929-
struct_series = bbq.struct(res_df)
929+
struct_series = bbq.struct(res_df).rename("extracted_results")
930930
return struct_series
931931
else:
932-
return res
932+
return res.rename("extracted_content")
933933

934934
def pdf_chunk(
935935
self,
@@ -1115,4 +1115,4 @@ def audio_transcribe(
11151115
results_struct = bbq.struct(results_df).rename("transcription_results")
11161116
return results_struct
11171117
else:
1118-
return transcribed_content_series
1118+
return transcribed_content_series.rename("transcribed_content")

0 commit comments

Comments
 (0)