summaryrefslogtreecommitdiff
path: root/rdflib/compare.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdflib/compare.py')
-rw-r--r--rdflib/compare.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdflib/compare.py b/rdflib/compare.py
index a7e6eb03..4b8473c7 100644
--- a/rdflib/compare.py
+++ b/rdflib/compare.py
@@ -619,7 +619,7 @@ def similar(g1: Graph, g2: Graph):
def _squashed_graphs_triples(g1: Graph, g2: Graph):
- for (t1, t2) in zip(sorted(_squash_graph(g1)), sorted(_squash_graph(g2))):
+ for t1, t2 in zip(sorted(_squash_graph(g1)), sorted(_squash_graph(g2))):
yield t1, t2