parser: clean up unused import & variable
This commit is contained in:
parent
b84833fb37
commit
ddfcaba92e
|
@ -1,7 +1,7 @@
|
||||||
# distutils: language = c++
|
# distutils: language = c++
|
||||||
# cython: language_level=3
|
# cython: language_level=3
|
||||||
|
|
||||||
from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t
|
from libc.stdint cimport uint8_t, uint32_t, uint64_t
|
||||||
from libcpp cimport bool
|
from libcpp cimport bool
|
||||||
from libcpp.pair cimport pair
|
from libcpp.pair cimport pair
|
||||||
from libcpp.string cimport string
|
from libcpp.string cimport string
|
||||||
|
|
|
@ -18,7 +18,6 @@ cdef class CANParser:
|
||||||
cdef:
|
cdef:
|
||||||
cpp_CANParser *can
|
cpp_CANParser *can
|
||||||
const DBC *dbc
|
const DBC *dbc
|
||||||
vector[SignalValue] can_values
|
|
||||||
vector[uint32_t] addresses
|
vector[uint32_t] addresses
|
||||||
|
|
||||||
cdef readonly:
|
cdef readonly:
|
||||||
|
|
Loading…
Reference in New Issue