From 478d9c6806c605e1f7b8cf6681a0e3da0e50108d Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Fri, 4 Oct 2019 12:05:27 +0100 Subject: [PATCH] Bug fix. --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index b543819..2bf4480 100755 --- a/app.py +++ b/app.py @@ -171,7 +171,8 @@ def create_depicts_item(item_id): else: alt_labels = set() - return DepictsItem(label=label, + return DepictsItem(item_id=item_id, + label=label, description=description, alt_labels=alt_labels, count=0)