Skip to content
Snippets Groups Projects
Commit 49c7ba38 authored by Nico's avatar Nico
Browse files

Simplify abstract container class

parent 6c52ff7a
No related branches found
No related tags found
No related merge requests found
......@@ -2,19 +2,11 @@
# SPDX-License-Identifier: AGPL-3.0-only
# License-Filename: LICENSE.md
from gi.repository import Gtk
from gi.repository.Gtk import Builder, Overlay
class Container(Gtk.Overlay):
class Container(Overlay):
def __init__(self):
Gtk.Overlay.__init__(self)
self.builder = Gtk.Builder()
self.__setup_view()
self.__register_signals()
def __setup_view(self):
pass
def __register_signals(self):
pass
super().__init__()
self.builder = Builder()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment