* deal with any extra quotes in xunit,xname,yunit,yname => issue #13
* rename CLI binary to lowercase version * IMCtermite.pyx: rename boolean data flag * insert some double quotes in sampleA.raw for testing * version 2.0.1
This commit is contained in:
@@ -20,8 +20,8 @@ cdef class imctermite:
|
||||
self.cppimc.set_file(rawfile)
|
||||
|
||||
# get JSON list of channels
|
||||
def get_channels(self, bool data):
|
||||
chnlst = self.cppimc.get_channels(True,data)
|
||||
def get_channels(self, bool include_data):
|
||||
chnlst = self.cppimc.get_channels(True,include_data)
|
||||
chnlstjn = [jn.loads(chn.decode(errors="ignore")) for chn in chnlst]
|
||||
return chnlstjn
|
||||
|
||||
|
Reference in New Issue
Block a user