We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ca3cd commit 54e6cb4Copy full SHA for 54e6cb4
src/omero_rdf/__init__.py
@@ -137,7 +137,7 @@ def __init__(self):
137
def serialize_triple(self, triple):
138
s, p, o = triple
139
escaped = o.n3().encode("unicode_escape").decode("utf-8")
140
- print(f"""{s.n3()}\t{p.n3()}\t{escaped} .""")
+ return f"""{s.n3()}\t{p.n3()}\t{escaped} ."""
141
142
143
class NonStreamingFormat(Format):
0 commit comments