Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix string decoding
  • Loading branch information
acoburn committed Mar 2, 2022
commit 351fa3fb384096c95b3ffcab5e6ee7fe26379d2b
2 changes: 1 addition & 1 deletion ldnlib/consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ def notification(self, iri, **kwargs):
return r.json()
else:
g = Graph().parse(data=r.text, format=mime_type)
return json.loads(str(g.serialize(format="json-ld"), 'utf-8'))
return json.loads(g.serialize(format="json-ld"))