Skip to content

Commit 4305049

Browse files
committed
fix spelling of extension
1 parent 18591ec commit 4305049

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

neo/io/basefromrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class BaseFromRaw(BaseIO):
6363

6464
name = 'BaseIO'
6565
description = ''
66-
extentions = []
66+
extensions = []
6767

6868
mode = 'file'
6969

neo/io/nestio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __init__(self, filenames=None):
8282
if ext in self.extensions:
8383
if ext in self.avail_IOs:
8484
raise ValueError('Received multiple files with "%s" '
85-
'extention. Can only load single file of '
85+
'extension. Can only load single file of '
8686
'this type.' % ext)
8787
self.avail_IOs[ext] = ColumnIO(filename)
8888
self.avail_formats[ext] = path

0 commit comments

Comments
 (0)