Skip to content

Commit

Permalink
Update wsgi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Sep 23, 2023
1 parent d322dab commit e288198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/biomappings/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit e288198

Please sign in to comment.