Conversation
|
I think #265 should also fall under this |
201cd0b to
9d95c22
Compare
9d95c22 to
73cca1c
Compare
b4b706c to
7eaa773
Compare
7eaa773 to
7f41aaa
Compare
|
Looks good, I made some small adjustements
|
|
See my comment #270 (comment) above about In short, it must be made clear whether the ASCII header fields are stored as |
| ch_idx = ch_names.index(ch.lower()) | ||
| to_keep[i] = ch_idx | ||
| load_channels = to_keep.copy() | ||
| load_channels = list(to_keep) |
There was a problem hiding this comment.
to_keep is already a list, and to_keep.copy() is more readable. Why revert?
There was a problem hiding this comment.
could be a numpy array as well, so convert to list just to be safe
There was a problem hiding this comment.
It's supposed to be a list. Why would it be a Numpy array?
Fixes #265.