We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c30a09 commit 595e41eCopy full SHA for 595e41e
1 file changed
implement-shell-tools/ls/ls.py
@@ -20,7 +20,7 @@
20
21
args = parser.parse_args()
22
23
-entries = os.listdir(args.filepath)
+entries = sorted(os.listdir(args.filepath))
24
25
if args.show_hidden_files:
26
entries = [".", ".."] + entries
0 commit comments