diff --git a/briar-gtk/briar_gtk/conversation/conversation_presenter.py b/briar-gtk/briar_gtk/conversation/conversation_presenter.py
index 3c9064ade29b74aa66444cd137b412c1a89d85ab..9405aecabed95fa741b0d662b2cd0fa4b821ea56 100644
--- a/briar-gtk/briar_gtk/conversation/conversation_presenter.py
+++ b/briar-gtk/briar_gtk/conversation/conversation_presenter.py
@@ -2,7 +2,7 @@
 # SPDX-License-Identifier: AGPL-3.0-only
 # License-Filename: LICENSE.md
 
-from briar_gtk.handlers.notification import NotificationHandler
+from briar_gtk.notification_handler import NotificationHandler
 from briar_gtk.private_chat.private_chat_presenter import PrivateChatPresenter
 from briar_gtk.define import APP
 from briar_gtk.private_chat.private_chat_view import PrivateChatView
diff --git a/briar-gtk/briar_gtk/handlers/__init__.py b/briar-gtk/briar_gtk/handlers/__init__.py
deleted file mode 100644
index 09832ee9c69e944fc22a265421f40c6bde187b07..0000000000000000000000000000000000000000
--- a/briar-gtk/briar_gtk/handlers/__init__.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# Copyright (c) 2020 Nico Alt
-# SPDX-License-Identifier: AGPL-3.0-only
-# License-Filename: LICENSE.md
-"""
-Similar to presenters, handlers react to input, but they aren't attached
-to a view
-"""
diff --git a/briar-gtk/briar_gtk/handlers/notification.py b/briar-gtk/briar_gtk/notification_handler.py
similarity index 98%
rename from briar-gtk/briar_gtk/handlers/notification.py
rename to briar-gtk/briar_gtk/notification_handler.py
index f42e41c69da8a7086da811d752c5f98dd8171af8..343ceb643f3350917c80a67a8fc3baa1c6d967fe 100644
--- a/briar-gtk/briar_gtk/handlers/notification.py
+++ b/briar-gtk/briar_gtk/notification_handler.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2020 Nico Alt
+# Copyright (c) 2020-2021 Nico Alt
 # SPDX-License-Identifier: AGPL-3.0-only
 # License-Filename: LICENSE.md