From 3ac8abf14c3815a220a518e694beb3e541e2ff7e Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Fri, 22 Sep 2023 12:05:08 +0200 Subject: [PATCH] Solves a black problem. --- gramps/gui/editors/displaytabs/citationrefmodel.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gramps/gui/editors/displaytabs/citationrefmodel.py b/gramps/gui/editors/displaytabs/citationrefmodel.py index 3b4a6e093a..c9a841fb5f 100644 --- a/gramps/gui/editors/displaytabs/citationrefmodel.py +++ b/gramps/gui/editors/displaytabs/citationrefmodel.py @@ -39,7 +39,9 @@ # ------------------------------------------------------------------------- class CitationRefModel(Gtk.ListStore): def __init__(self, citation_list, db): - Gtk.ListStore.__init__(self, str, str, str, str, str, str, str, bool, str, str, str) + Gtk.ListStore.__init__( + self, str, str, str, str, str, str, str, bool, str, str, str + ) self.db = db dbgsfh = self.db.get_source_from_handle for handle in citation_list: