Fix Pyright warning with curses.textpad (#3213)

This commit is contained in:
correctmost 2025-03-01 18:40:20 -05:00 committed by GitHub
parent 4f72c0177b
commit 1c6085f86c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ class EditViewport(AbstractViewport):
# if this gets initialized multiple times it will be an overlay
# and ENTER has to be pressed multiple times to accept
if not self._textbox:
self._textbox = curses.textpad.Textbox(self._edit_win)
self._textbox = Textbox(self._edit_win)
self._main_win.refresh()
self._textbox.edit(self.process_key) # type: ignore[arg-type]