Skip to content

Commit c86333e

Browse files
committed
Fix proble when priting the number of channel and channel streams
1 parent 1644350 commit c86333e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/baserawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,6 +844,6 @@ def pprint_vector(vector, lim=8):
844844
part2 = ' , '.join(e for e in vector[-lim // 2:])
845845
txt = f"[{part1} ... {part2}]"
846846
else:
847-
part1 = ', '.join(e for e in vector[:lim // 2])
847+
part1 = ', '.join(e for e in vector)
848848
txt = f"[{part1}]"
849849
return txt

0 commit comments

Comments
 (0)