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.
2 parents 4c68051 + 5edb610 commit b066b5fCopy full SHA for b066b5f
tests/src/isomorphic_diff.py
@@ -79,9 +79,9 @@ def _report(
79
https://rdflib.readthedocs.io/en/stable/apidocs/rdflib.html#module-rdflib.compare
80
"""
81
for line in sorted(graph.serialize(format="nt").splitlines()):
82
- if line.strip() == b"":
+ if line.strip() == "":
83
continue
84
- _logger.debug("%s %s", diff_symbol, line.decode("ascii"))
+ _logger.debug("%s %s", diff_symbol, line)
85
86
#_report("1", g1)
87
#_report("2", g2)
0 commit comments