We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1644350 + c86333e commit 0aa3a68Copy full SHA for 0aa3a68
1 file changed
neo/rawio/baserawio.py
@@ -844,6 +844,6 @@ def pprint_vector(vector, lim=8):
844
part2 = ' , '.join(e for e in vector[-lim // 2:])
845
txt = f"[{part1} ... {part2}]"
846
else:
847
- part1 = ', '.join(e for e in vector[:lim // 2])
+ part1 = ', '.join(e for e in vector)
848
txt = f"[{part1}]"
849
return txt
0 commit comments