We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 799fe96 + 30d51d3 commit 2c863ffCopy full SHA for 2c863ff
neo/rawio/axonrawio.py
@@ -209,7 +209,7 @@ def _parse_header(self):
209
for i, tag in enumerate(info['listTag']):
210
timestamps.append(tag['lTagTime'])
211
labels.append(str(tag['nTagType']))
212
- comments.append(clean_string(tag['sComment']))
+ comments.append(str(clean_string(tag['sComment'])))
213
self._raw_ev_timestamps = np.array(timestamps)
214
self._ev_labels = np.array(labels, dtype='U')
215
self._ev_comments = np.array(comments, dtype='U')
0 commit comments