Skip to content

Commit e28cc28

Browse files
add todo label
1 parent 013d08d commit e28cc28

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ephys/classes/channels.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- ChannelInformation: Extracts and stores channel information from electrophysiological data.
88
- ChannelAverage: Calculates the average trace from a set of voltage or current traces.
99
"""
10+
1011
from __future__ import annotations
1112
from typing import Any, TYPE_CHECKING
1213
from re import findall
@@ -219,6 +220,7 @@ def __init__(self, data: Any = None) -> None:
219220
channel_list.append(channel_index)
220221
channel_unit.append(str(i["units"]))
221222
elif isinstance(data, IgorIO):
223+
# TODO: Implement this for IgorIO
222224
pass
223225
if len(channel_list) > 0:
224226
self.channel_number = np.array(channel_list)

0 commit comments

Comments
 (0)