We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013d08d commit e28cc28Copy full SHA for e28cc28
ephys/classes/channels.py
@@ -7,6 +7,7 @@
7
- ChannelInformation: Extracts and stores channel information from electrophysiological data.
8
- ChannelAverage: Calculates the average trace from a set of voltage or current traces.
9
"""
10
+
11
from __future__ import annotations
12
from typing import Any, TYPE_CHECKING
13
from re import findall
@@ -219,6 +220,7 @@ def __init__(self, data: Any = None) -> None:
219
220
channel_list.append(channel_index)
221
channel_unit.append(str(i["units"]))
222
elif isinstance(data, IgorIO):
223
+ # TODO: Implement this for IgorIO
224
pass
225
if len(channel_list) > 0:
226
self.channel_number = np.array(channel_list)
0 commit comments