mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Remove extra argument to method call
This commit is contained in:
parent
676aa8894c
commit
38f744195f
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class Textbox:
|
|||
self.win.delch()
|
||||
elif ch == ascii.ENQ: # ^e
|
||||
if self.stripspaces:
|
||||
self.win.move(y, self.firstblank(y, maxx))
|
||||
self.win.move(y, self.firstblank(y))
|
||||
else:
|
||||
self.win.move(y, self.maxx)
|
||||
elif ch in (ascii.ACK, curses.KEY_RIGHT): # ^f
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue