From 3bb25c494b11fdd15850acfe03377ab8e72d53ba Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Fri, 28 Feb 2020 13:21:31 +0200 Subject: [PATCH] CLN: Removed unused variables defenition --- pandas/_libs/index.pyx | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandas/_libs/index.pyx b/pandas/_libs/index.pyx index 6141e2b78e9f4..0ba5cb7e9bc40 100644 --- a/pandas/_libs/index.pyx +++ b/pandas/_libs/index.pyx @@ -115,8 +115,6 @@ cdef class IndexEngine: cdef _maybe_get_bool_indexer(self, object val): cdef: ndarray[uint8_t, ndim=1, cast=True] indexer - ndarray[intp_t, ndim=1] found - int count indexer = self._get_index_values() == val return self._unpack_bool_indexer(indexer, val)