Skip to content

Commit 4655b19

Browse files
committed
Add AlphaOmegaRawIO class to rawio module imports
1 parent 282fa8f commit 4655b19

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

neo/rawio/__init__.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
1313
Classes:
1414
15+
* :attr:`AlphaOmegaRawIO`
1516
* :attr:`AxographRawIO`
1617
* :attr:`AxonaRawIO`
1718
* :attr:`AxonRawIO`
@@ -30,7 +31,7 @@
3031
* :attr:`NIXRawIO`
3132
* :attr:`OpenEphysRawIO`
3233
* :attr:`OpenEphysBinaryRawIO`
33-
* :attr:'PhyRawIO'
34+
* :attr:`PhyRawIO`
3435
* :attr:`PlexonRawIO`
3536
* :attr:`RawBinarySignalRawIO`
3637
* :attr:`RawMCSRawIO`
@@ -42,6 +43,10 @@
4243
* :attr:`WinWcpRawIO`
4344
4445
46+
.. autoclass:: neo.rawio.AlphaOmegaRawIO
47+
48+
.. autoattribute:: extensions
49+
4550
.. autoclass:: neo.rawio.AxographRawIO
4651
4752
.. autoattribute:: extensions
@@ -157,6 +162,7 @@
157162
"""
158163
import os
159164

165+
from neo.rawio.alphaomegarawio import AlphaOmegaRawIO
160166
from neo.rawio.axographrawio import AxographRawIO
161167
from neo.rawio.axonarawio import AxonaRawIO
162168
from neo.rawio.axonrawio import AxonRawIO
@@ -188,6 +194,7 @@
188194
from neo.rawio.winwcprawio import WinWcpRawIO
189195

190196
rawiolist = [
197+
AlphaOmegaRawIO,
191198
AxographRawIO,
192199
AxonaRawIO,
193200
AxonRawIO,

0 commit comments

Comments
 (0)