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 fa00b7d commit 0249e7dCopy full SHA for 0249e7d
rdflib/plugins/shared/jsonld/context.py
@@ -8,7 +8,7 @@
8
# https://github.com/RDFLib/rdflib-jsonld/blob/feature/json-ld-1.1/rdflib_jsonld/context.py
9
from __future__ import annotations
10
11
-from collections import namedtuple
+from collections.abc import Collection, Generator
12
from typing import (
13
TYPE_CHECKING,
14
Any,
@@ -723,6 +723,3 @@ class Term(NamedTuple):
723
#: If true, marks the term as protected, meaning it cannot be overridden by a subcontext.
724
#: See https://www.w3.org/TR/json-ld11/#protected-term-definitions
725
protected: bool = False
726
-
727
728
-Context.terms
0 commit comments