chore: clear typehinting errors

This commit is contained in:
aclist 2026-08-04 18:04:22 +09:00
parent 1c154a709d
commit ff59d6dc35
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ class CursorMixin:
try:
cur_row = self.get_focused_row_index() # type: ignore
except Exception:
return
return False
if position == CursorPosition.DOWN:
if cur_row == end:

View File

@ -46,7 +46,7 @@ class ShortHBox(Gtk.Box):
self.pack_start(widget, NO_EXPAND, NO_FILL, NO_PADDING)
class Options(ScrollableMixin, Gtk.ScrolledWindow):
class Options(ScrollableMixin, Gtk.ScrolledWindow): # type: ignore
def __init__(self, controller: "Controller"):
super().__init__(
margin_start=10,