File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class LibraryView(Adw.Bin):
3636 style_provider = Gtk .CssProvider ()
3737 # endregion
3838
39- items_per_line = GObject .property (type = int , default = 0 )
39+ items_per_line = GObject .property (type = int , default = 0 ) # type: ignore
4040
4141 def __init__ (self , window , ** kwargs ):
4242 super ().__init__ (** kwargs )
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ def g_show_uri_handler(self, res: Result):
191191 def update_library (self ):
192192 GLib .idle_add (self .page_library .update )
193193
194- def set_title (self , title , subtitle : str = "" ):
194+ def title (self , title , subtitle : str = "" ):
195195 self .view_switcher_title .set_title (title )
196196 self .view_switcher_title .set_subtitle (subtitle )
197197
@@ -389,7 +389,7 @@ def show_toast(
389389 action_label = None ,
390390 action_callback = None ,
391391 dismissed_callback = None ,
392- ) -> Adw . Toast :
392+ ) -> None :
393393
394394 toast = Adw .Toast .new (message )
395395 toast .props .timeout = timeout
You can’t perform that action at this time.
0 commit comments