We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17a0ca1 commit 76377b4Copy full SHA for 76377b4
pandas/_libs/index.pyx
@@ -195,7 +195,7 @@ cdef class IndexEngine:
195
if count > 1:
196
return indexer
197
if count == 1:
198
- return int(found[0])
+ return found[0]
199
200
raise KeyError(val)
201
pandas/_libs/index_class_helper.pxi.in
@@ -74,7 +74,7 @@ cdef class {{name}}Engine(IndexEngine):
74
75
76
77
78
79
80
0 commit comments