Skip to content

Commit ebdd763

Browse files
committed
Switch the interactive display for DelayedArray's back to __repr__.
1 parent f49be78 commit ebdd763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/delayedarray/DelayedArray.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def dtype(self) -> dtype:
101101
"""
102102
return self._seed.dtype
103103

104-
def __str__(self):
104+
def __repr__(self):
105105
total = 1
106106
for s in self._seed.shape:
107107
total *= s

0 commit comments

Comments
 (0)