Skip to content

Commit 6eba353

Browse files
committed
more types
1 parent 3232768 commit 6eba353

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sql/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ def concat_table_chunks(
800800
):
801801
raise ValueError("The columns in the results don't match")
802802

803-
result_table = [[] for _ in range(table_chunks[0].num_columns)]
803+
result_table: List[List[Any]] = [[] for _ in range(table_chunks[0].num_columns)]
804804
for i in range(0, len(table_chunks)):
805805
for j in range(table_chunks[i].num_columns):
806806
result_table[j].extend(table_chunks[i].column_table[j])

0 commit comments

Comments
 (0)