We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I think it would be more natural to display all plots in creation/modification order? I think changing line 121 in kernel.py from
for fname in sorted(os.listdir(tmpdir)):
to
for fname in sorted(os.listdir(tmpdir), key=os.path.getmtime)):
would do it. Thoughts?
Activity