Skip to content

Commit 06a32b8

Browse files
committed
fix tests
1 parent 7b3d36f commit 06a32b8

File tree

1 file changed

+1
-1
lines changed
  • third_party/bigframes_vendored/ibis/expr/operations

1 file changed

+1
-1
lines changed

third_party/bigframes_vendored/ibis/expr/operations/ai_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class AIGenerate(Value):
3232
@attribute
3333
def dtype(self) -> dt.Struct:
3434
if self.output_schema is None:
35-
output_pa_fields = pa.field("result", pa.string())
35+
output_pa_fields = (pa.field("result", pa.string()),)
3636
else:
3737
output_pa_fields = output_schemas.parse_sql_fields(self.output_schema.value)
3838

0 commit comments

Comments
 (0)