Skip to content

Commit 53d0ce2

Browse files
committed
wrong opeartor
1 parent 5a37754 commit 53d0ce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5441,7 +5441,7 @@ def _dir_additions(self) -> Set[str]:
54415441
"""
54425442
additions = super()._dir_additions()
54435443
if self._info_axis._can_hold_strings:
5444-
additions &= self._info_axis._dir_additions_for_owner
5444+
additions.update(self._info_axis._dir_additions_for_owner)
54455445
return additions
54465446

54475447
# ----------------------------------------------------------------------

0 commit comments

Comments
 (0)