Skip to content

Commit 52379a8

Browse files
Styling and remove stray print statement
1 parent d608b5b commit 52379a8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/_libs/reduction.pyx

+1-3
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@ cdef class SeriesBinGrouper(_BaseGrouper):
105105

106106
cdef public:
107107
ndarray arr, index, dummy_arr, dummy_index
108-
object values, f, bins, typ, ityp, name
109-
object idtype
108+
object values, f, bins, typ, ityp, name, idtype
110109

111110
def __init__(self, object series, object f, object bins):
112111

@@ -262,7 +261,6 @@ cdef class SeriesGrouper(_BaseGrouper):
262261
start += group_size
263262
group_size = 0
264263
continue
265-
print(f"Group size: {group_size}")
266264

267265
end = start + group_size
268266
islider.move(start, end)

0 commit comments

Comments
 (0)