From 14a14242b219845660be41dba523db7aadcc1562 Mon Sep 17 00:00:00 2001 From: zm711 <92116279+zm711@users.noreply.github.com> Date: Fri, 20 Oct 2023 09:20:47 -0400 Subject: [PATCH] Fix repr --- neo/rawio/baserawio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/rawio/baserawio.py b/neo/rawio/baserawio.py index 5b2f1dc01..c9646bbd8 100644 --- a/neo/rawio/baserawio.py +++ b/neo/rawio/baserawio.py @@ -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'