Skip to content

Commit

Permalink
Remove debugging prints
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Aug 5, 2024
1 parent e3b334a commit 8255944
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/textual/widgets/_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,6 @@ def action_delete_left(self) -> None:

def action_delete_left_word(self) -> None:
"""Delete leftward of the cursor position to the start of a word."""
print(self.cursor_position)
if self.cursor_position <= 0:
return
if self.password:
Expand All @@ -760,7 +759,6 @@ def action_delete_left_word(self) -> None:
else:
self.cursor_position = hit.start()
new_value = f"{self.value[: self.cursor_position]}{after}"
print(new_value)
self.value = new_value

def action_delete_left_all(self) -> None:
Expand Down

0 comments on commit 8255944

Please sign in to comment.