Skip to content

Commit 86db870

Browse files
Styling and remove stray print statement
1 parent d608b5b commit 86db870

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

pandas/_libs/reduction.pyx

+2-5
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

@@ -200,8 +199,7 @@ cdef class SeriesGrouper(_BaseGrouper):
200199

201200
cdef public:
202201
ndarray arr, index, dummy_arr, dummy_index
203-
object f, labels, values, typ, ityp, name
204-
object idtype
202+
object f, labels, values, typ, ityp, name, idtype
205203

206204
def __init__(self, object series, object f, ndarray[intp_t] labels,
207205
Py_ssize_t ngroups):
@@ -262,7 +260,6 @@ cdef class SeriesGrouper(_BaseGrouper):
262260
start += group_size
263261
group_size = 0
264262
continue
265-
print(f"Group size: {group_size}")
266263

267264
end = start + group_size
268265
islider.move(start, end)

0 commit comments

Comments
 (0)