From db3d4f45c4dd10fd87d4e10cc986293e1c1a8561 Mon Sep 17 00:00:00 2001 From: Zach McKenzie <92116279+zm711@users.noreply.github.com> Date: Wed, 29 Nov 2023 11:04:06 -0500 Subject: [PATCH] fix typo in repr --- neo/core/analogsignal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/core/analogsignal.py b/neo/core/analogsignal.py index 9e34d8dc4..d5cc16b55 100644 --- a/neo/core/analogsignal.py +++ b/neo/core/analogsignal.py @@ -417,7 +417,7 @@ def _repr_pretty_(self, pp, cycle): Handle pretty-printing the :class:`AnalogSignal`. ''' pp.text(f"{self.__class__.__name__} with {self.shape[1]} channels of length " - f"{self.shape[0]}; units {self.units.dimesionality.string}; datatype " + f"{self.shape[0]}; units {self.units.dimensionality.string}; datatype " f"{self.dtype}") if self._has_repr_pretty_attrs_(): pp.breakable()