Skip to content

Commit 93a7ede

Browse files
authored
Merge pull request #1355 from zm711/repr-fix
Fix typo in analogsignal repr
2 parents b8989a1 + db3d4f4 commit 93a7ede

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/core/analogsignal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ def _repr_pretty_(self, pp, cycle):
417417
Handle pretty-printing the :class:`AnalogSignal`.
418418
'''
419419
pp.text(f"{self.__class__.__name__} with {self.shape[1]} channels of length "
420-
f"{self.shape[0]}; units {self.units.dimesionality.string}; datatype "
420+
f"{self.shape[0]}; units {self.units.dimensionality.string}; datatype "
421421
f"{self.dtype}")
422422
if self._has_repr_pretty_attrs_():
423423
pp.breakable()

0 commit comments

Comments
 (0)