From e288198f69d02c9cb49751e140e5d862490aa634 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Sat, 23 Sep 2023 20:22:10 +0200 Subject: [PATCH] Update wsgi.py --- src/biomappings/wsgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/biomappings/wsgi.py b/src/biomappings/wsgi.py index 08f0cc4a..dc457fc1 100644 --- a/src/biomappings/wsgi.py +++ b/src/biomappings/wsgi.py @@ -463,10 +463,10 @@ def persist(self): # note these go backwards because of the way they are read if value == "broad": value = "correct" - prediction['relation'] = "skos:narrowMatch" + prediction["relation"] = "skos:narrowMatch" elif value == "narrow": value = "correct" - prediction['relation'] = "skos:broadMatch" + prediction["relation"] = "skos:broadMatch" entries[value].append(prediction)