Skip to content

Commit 4bd88a6

Browse files
committed
Use List instead of Table for python list type.
1 parent 4d30828 commit 4bd88a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cocoindex/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _dump_type(t, metadata):
5555
}
5656
elif dataclasses.is_dataclass(elem_type):
5757
encoded_type = {
58-
'kind': 'Table',
58+
'kind': 'List',
5959
'row': { 'fields': _dump_fields_schema(elem_type) },
6060
}
6161
else:

0 commit comments

Comments
 (0)