Skip to content

Commit d230c15

Browse files
committed
content: Remove unnecessary references
1 parent a91b7d2 commit d230c15

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

openemail/widgets/content.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
from openemail import APP_ID, PREFIX, Notifier, mail
1111

12-
from .contacts import Contacts
13-
from .messages import Broadcasts, Drafts, Inbox, Outbox, Trash
12+
from .contacts import Contacts # noqa: F401
13+
from .messages import Broadcasts, Drafts, Inbox, Outbox, Trash # noqa: F401
1414
from .navigation_row import NavigationRow
1515
from .profile_settings import ProfileSettings
1616

@@ -28,13 +28,6 @@ class Content(Adw.BreakpointBin):
2828
bottom_sidebar: Gtk.ListBox = Gtk.Template.Child()
2929
profile_settings: ProfileSettings = Gtk.Template.Child()
3030

31-
inbox: Inbox = Gtk.Template.Child()
32-
outbox: Outbox = Gtk.Template.Child()
33-
drafts: Drafts = Gtk.Template.Child()
34-
trash: Trash = Gtk.Template.Child()
35-
broadcasts: Broadcasts = Gtk.Template.Child()
36-
contacts: Contacts = Gtk.Template.Child()
37-
3831
content_child_name = GObject.Property(type=str, default="inbox")
3932
profile_stack_child_name = GObject.Property(type=str, default="loading")
4033
profile_image = GObject.Property(type=Gdk.Paintable)

0 commit comments

Comments
 (0)