Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 190f32e

Browse files
authored
chore: fix mypy error with polars.LazyFrame.explode() (#1964)
1 parent 398155a commit 190f32e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bigframes/core/compile/polars/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ def _aggregate(
646646
def compile_explode(self, node: nodes.ExplodeNode):
647647
assert node.offsets_col is None
648648
df = self.compile_node(node.child)
649-
cols = [pl.col(col.id.sql) for col in node.column_ids]
649+
cols = [col.id.sql for col in node.column_ids]
650650
return df.explode(cols)
651651

652652
@compile_node.register

0 commit comments

Comments
 (0)