Skip to content

Commit 88347b7

Browse files
committed
removing some of the debugging prints
1 parent 4ff174e commit 88347b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

npcsh/shell_helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1659,11 +1659,11 @@ def parse_piped_command(current_command):
16591659

16601660
try:
16611661
command_parts = shlex.split(current_command)
1662-
print(command_parts)
1662+
# print(command_parts)
16631663
except ValueError:
16641664
# Fallback if quote parsing fails
16651665
command_parts = current_command.split()
1666-
print(command_parts)
1666+
# print(command_parts)
16671667
# Base command is the first part
16681668
base_command = command_parts[0]
16691669

0 commit comments

Comments
 (0)