Skip to content

Commit

Permalink
fix pre-commit hook: black
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Günther <[email protected]>
  • Loading branch information
tom-hg57 committed Jul 21, 2024
1 parent 95a53af commit 8453a09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cimgen/cimgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ def _extract_text(object_dic):
return object_dic[0]["_"]
elif "_" in object_dic.keys():
return object_dic["_"]
elif '$rdfs:Literal' in object_dic.keys():
return object_dic['$rdfs:Literal']
elif "$rdfs:Literal" in object_dic.keys():
return object_dic["$rdfs:Literal"]
else:
return ""

Expand Down

0 comments on commit 8453a09

Please sign in to comment.