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

Commit 93ff863

Browse files
committed
fix Sequence type checking bug
1 parent 1ebb2d6 commit 93ff863

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bigframes/dataframe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2234,10 +2234,10 @@ def _assign_single_item(
22342234
copy = self.copy()
22352235
copy[k] = v(copy)
22362236
return copy
2237-
elif utils.is_list_like(v) or isinstance(v, Sequence):
2237+
elif utils.is_list_like(v):
22382238
return self._assign_single_item_listlike(k, v)
22392239
else:
2240-
return self._assign_scalar(k, v)
2240+
return self._assign_scalar(k, v) # type: ignore
22412241

22422242
def _assign_multi_items(
22432243
self,

0 commit comments

Comments
 (0)