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

Commit fbbc60b

Browse files
fix import
1 parent aa0fba3 commit fbbc60b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bigframes/operations/strings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,10 @@ def to_blob(self, connection: Optional[str] = None) -> T:
325325
bigframes.series.Series: Blob Series.
326326
327327
"""
328-
import bigframes.core.block
328+
import bigframes.core.blocks
329329

330330
if hasattr(self._data, "_block") and isinstance(
331-
self._data._block, bigframes.core.block.Block
331+
self._data._block, bigframes.core.blocks.Block
332332
):
333333
session = self._data._block.session
334334
else:

0 commit comments

Comments
 (0)