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 eb8407d commit 62a5512Copy full SHA for 62a5512
neo/rawio/neuralynxrawio/neuralynxrawio.py
@@ -151,11 +151,11 @@ def __init__(
151
152
if filename:
153
include_filenames = filename
154
- raise DeprecationWarning("`filename` is deprecated and will be removed. Please use `include_filenames` instead")
+ warnings.warn("`filename` is deprecated and will be removed. Please use `include_filenames` instead")
155
156
if exclude_filename:
157
exclude_filenames = exclude_filename
158
- raise DeprecationWarning("`exclude_filename` is deprecated and will be removed. Please use `exclude_filenames` instead")
+ warnings.warn("`exclude_filename` is deprecated and will be removed. Please use `exclude_filenames` instead")
159
160
if include_filenames is None:
161
include_filenames = []
0 commit comments