summaryrefslogtreecommitdiff
path: root/rdflib/graph.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdflib/graph.py')
-rw-r--r--rdflib/graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdflib/graph.py b/rdflib/graph.py
index 809241df..c6f0fd36 100644
--- a/rdflib/graph.py
+++ b/rdflib/graph.py
@@ -2588,7 +2588,7 @@ class QuotedGraph(Graph):
rdflib.term._ORDERING[QuotedGraph] = 11
-class Seq(object):
+class Seq:
"""Wrapper around an RDF Seq resource
It implements a container type in Python with the order of the items
@@ -2894,7 +2894,7 @@ def _assertnode(*terms: Any) -> bool:
return True
-class BatchAddGraph(object):
+class BatchAddGraph:
"""
Wrapper around graph that turns batches of calls to Graph's add
(and optionally, addN) into calls to batched calls to addN`.