fix: add a type ignore to curses vline
The typeshed stubs do not have a correct definition (probably because the python docs themselves do not have it)
This commit is contained in:
parent
f80e9d9dde
commit
50b8a7afe1
1 changed files with 4 additions and 2 deletions
|
@ -22,8 +22,10 @@ class VerticalSeparator(Win):
|
|||
__slots__ = ()
|
||||
|
||||
def rewrite_line(self) -> None:
|
||||
self._win.vline(0, 0, curses.ACS_VLINE, self.height,
|
||||
to_curses_attr(get_theme().COLOR_VERTICAL_SEPARATOR))
|
||||
self._win.vline(
|
||||
0, 0, curses.ACS_VLINE, self.height,
|
||||
to_curses_attr(get_theme().COLOR_VERTICAL_SEPARATOR)
|
||||
) # type: ignore
|
||||
self._refresh()
|
||||
|
||||
def refresh(self) -> None:
|
||||
|
|
Loading…
Reference in a new issue