Skip to content

Commit 14a1424

Browse files
committed
Fix repr
1 parent 0f9de90 commit 14a1424

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/baserawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def source_name(self):
183183
return self._source_name()
184184

185185
def __repr__(self):
186-
txt = f'{self.__class.__.__name__}: {self.source_name()}\n'
186+
txt = f'{self.__class__.__name__}: {self.source_name()}\n'
187187
if self.header is not None:
188188
nb_block = self.block_count()
189189
txt += f'nb_block: {nb_block}\n'

0 commit comments

Comments
 (0)