Skip to content

Commit 9539548

Browse files
committed
change exclude_filenames from set to list
1 parent 624b3c9 commit 9539548

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neo/rawio/neuralynxrawio/neuralynxrawio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ def __init__(
164164
include_filenames = []
165165

166166
if exclude_filenames is None:
167-
exclude_filenames = set()
167+
exclude_filenames = []
168168
elif not isinstance(exclude_filenames, (list, set, np.ndarray)):
169-
exclude_filenames = {exclude_filenames}
169+
exclude_filenames = [exclude_filenames]
170170

171171
if include_filenames:
172172
self.rawmode = 'multiple-files'

0 commit comments

Comments
 (0)