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 9bdb725 commit b82e8a7Copy full SHA for b82e8a7
1 file changed
implement-shell-tools/ls/ls.py
@@ -21,7 +21,6 @@
21
if not args.all:
22
entries = [entry for entry in entries if not entry.startswith('.')]
23
entries.sort(key=str.lower)
24
- # print(entries)
25
26
if args.one:
27
for entry in entries:
@@ -31,4 +30,4 @@
31
30
print(f" ".join(entries))
32
33
except FileNotFoundError:
34
- print(f"ls: {args.path}: No such file or directory.", file=sys.stderr)
+ print(f"ls: {args.path}: No such file or directory.", file=sys.stderr)
0 commit comments