diff --git a/dropship/ui_templates.py b/dropship/ui_templates.py index 277f416..01e505a 100644 --- a/dropship/ui_templates.py +++ b/dropship/ui_templates.py @@ -19,8 +19,8 @@ class PendingTransferRow(Gtk.ListBoxRow): transferCodeButton = Gtk.Template.Child() cancelTransfer = Gtk.Template.Child() - def __init__(self, fileName, transferCode): - super(PendingTransferRow, self).__init__() + def __init__(self, fileName, transferCode, *args, **kwargs): + super(PendingTransferRow, self).__init__(*args, **kwargs) self.fileNameLabel.set_text(fileName) self.transferCodeButton.set_label(transferCode)