From c253e70ce4a6ee14c0c4599aff6af61f11712e69 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 8 Aug 2019 09:18:50 +0200 Subject: cython: Remove unused variable --- cython/plist.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/cython/plist.pyx b/cython/plist.pyx index d4f8d68..0149ffa 100644 --- a/cython/plist.pyx +++ b/cython/plist.pyx @@ -499,7 +499,6 @@ cdef class Date(Node): cpdef object get_value(self): cdef int32_t secs = 0 cdef int32_t usecs = 0 - cdef object result plist_get_date_val(self._c_node, &secs, &usecs) return ints_to_datetime(secs, usecs) -- cgit v1.1-32-gdbae