Skip to content

Commit 7461d48

Browse files
committed
rename BinGrouper.recons_codes -> reconstructed_codes
1 parent 4ec3132 commit 7461d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ def group_info(self):
768768
)
769769

770770
@cache_readonly
771-
def recons_codes(self):
771+
def reconstructed_codes(self) -> List[np.ndarray]:
772772
# get unique result indices, and prepend 0 as groupby starts from the first
773773
return [np.r_[0, np.flatnonzero(self.bins[1:] != self.bins[:-1]) + 1]]
774774

0 commit comments

Comments
 (0)