Skip to content

Commit 54e6cb4

Browse files
committed
0.5.1: correct merge error
The print statement introduced in the merge commit needed to be converted to a `return` in the new formatting strategy.
1 parent 90ca3cd commit 54e6cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/omero_rdf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def __init__(self):
137137
def serialize_triple(self, triple):
138138
s, p, o = triple
139139
escaped = o.n3().encode("unicode_escape").decode("utf-8")
140-
print(f"""{s.n3()}\t{p.n3()}\t{escaped} .""")
140+
return f"""{s.n3()}\t{p.n3()}\t{escaped} ."""
141141

142142

143143
class NonStreamingFormat(Format):

0 commit comments

Comments
 (0)