style: 🎨 Remove unused variable in c++ module

This commit is contained in:
2022-12-22 11:02:16 +01:00
parent 790da5cc60
commit 621c19d00c
2 changed files with 1 additions and 3 deletions

View File

@@ -11,7 +11,6 @@ cdef extern from "../cppmdlp/CPPFImdlp.h" namespace "mdlp":
vector[precision_t] getCutPoints()
string version()
cdef class CFImdlp:
cdef CPPFImdlp *thisptr
def __cinit__(self, algorithm):
@@ -25,4 +24,3 @@ cdef class CFImdlp:
return self.thisptr.getCutPoints()
def get_version(self):
return self.thisptr.version()