Skip to content

Commit

Permalink
Fix repr
Browse files Browse the repository at this point in the history
  • Loading branch information
zm711 committed Oct 20, 2023
1 parent 0f9de90 commit 14a1424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/rawio/baserawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def source_name(self):
return self._source_name()

def __repr__(self):
txt = f'{self.__class.__.__name__}: {self.source_name()}\n'
txt = f'{self.__class__.__name__}: {self.source_name()}\n'
if self.header is not None:
nb_block = self.block_count()
txt += f'nb_block: {nb_block}\n'
Expand Down

0 comments on commit 14a1424

Please sign in to comment.