I am printing a python datatable Frame. It pages when I do that, it's waiting for my input at the end, even for very small Frames. For example,
In [12]: DT = dt.Frame(A=range(5))
In [13]: DT
A
--- --
0 0
1 1
2 2
3 3
4 4
[5 rows x 1 column]
Press q to quit ↑←↓→ to move wasd to page t to toggle types g to jump
As you can see there is no need to navigate the Frame here. Is there a way to stop doing this for all python datatable Frames?
Thanks!