We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6793d5 commit 9512504Copy full SHA for 9512504
neo/io/neuralynxio.py
@@ -9,6 +9,7 @@
9
Author: Julia Sprenger, Carlos Canova
10
"""
11
12
+import warnings
13
from neo.io.basefromrawio import BaseFromRaw
14
from neo.rawio.neuralynxrawio.neuralynxrawio import NeuralynxRawIO
15
@@ -68,6 +69,14 @@ def __init__(
68
69
Default: False
70
71
72
+ if filename:
73
+ warnings.warn('Deprecated and will be removed. Please use `include_filenames` instead')
74
+ include_filenames = [filename]
75
+
76
+ if exclude_filename:
77
78
+ exclude_filenames = exclude_filename
79
80
NeuralynxRawIO.__init__(
81
self,
82
dirname=dirname,
0 commit comments