Skip to content

Commit b82e8a7

Browse files
committed
chore: cleaned up unused code
1 parent 9bdb725 commit b82e8a7

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • implement-shell-tools/ls

implement-shell-tools/ls/ls.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
if not args.all:
2222
entries = [entry for entry in entries if not entry.startswith('.')]
2323
entries.sort(key=str.lower)
24-
# print(entries)
2524

2625
if args.one:
2726
for entry in entries:
@@ -31,4 +30,4 @@
3130
print(f" ".join(entries))
3231

3332
except FileNotFoundError:
34-
print(f"ls: {args.path}: No such file or directory.", file=sys.stderr)
33+
print(f"ls: {args.path}: No such file or directory.", file=sys.stderr)

0 commit comments

Comments
 (0)