Skip to content

Commit

Permalink
Fix type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Dec 3, 2023
1 parent 0ac1939 commit 1e6d0b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cozy/ui/app_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, builder: Gtk.Builder):

def _get_ui_elements(self):
self._main_stack: Gtk.Stack = self._builder.get_object("main_stack")
self._navigation_view: Adw.Leaflet = self._builder.get_object("navigation_view")
self._navigation_view: Adw.NavigationView = self._builder.get_object("navigation_view")

def _connect_ui_elements(self):
self._main_stack.connect("notify::visible-child", self._update_view_model_view)
Expand Down
2 changes: 1 addition & 1 deletion cozy/ui/main_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import webbrowser
from threading import Thread

from gi.repository import Gtk, Gio, Gdk, GLib, GObject
from gi.repository import Adw, Gtk, Gio, Gdk, GLib, GObject

import cozy.control.filesystem_monitor as fs_monitor
import cozy.ext.inject as inject
Expand Down

0 comments on commit 1e6d0b6

Please sign in to comment.