Skip to content

Commit b40d850

Browse files
committed
Implemented phyio.py
1 parent 523bb15 commit b40d850

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

neo/io/phyio.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""
2+
"""
3+
4+
from neo.io.basefromrawio import BaseFromRaw
5+
from neo.rawio.phyrawio import PhyRawIO
6+
7+
8+
class PhyIO(PhyRawIO, BaseFromRaw):
9+
name = 'Phy IO'
10+
description = "Phy IO"
11+
mode = 'dir'
12+
13+
def __init__(self, dirname):
14+
PhyRawIO.__init__(self, dirname=dirname)
15+
BaseFromRaw.__init__(self, dirname)

0 commit comments

Comments
 (0)