From e631c91ad5bef0ba9cac4e5cdf346a0b943d4380 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 12 Oct 2020 14:14:05 +0200 Subject: [PATCH] Call to parent (seen in minigalaxy) --- dropship/ui_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropship/ui_templates.py b/dropship/ui_templates.py index 01e505a..bd15498 100644 --- a/dropship/ui_templates.py +++ b/dropship/ui_templates.py @@ -20,7 +20,7 @@ class PendingTransferRow(Gtk.ListBoxRow): cancelTransfer = Gtk.Template.Child() def __init__(self, fileName, transferCode, *args, **kwargs): - super(PendingTransferRow, self).__init__(*args, **kwargs) + Gtk.ListBoxRow.__init__(self, *args, **kwargs) self.fileNameLabel.set_text(fileName) self.transferCodeButton.set_label(transferCode)