File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ upgrade-submodules:
1010 git submodule update --remote --init --recursive
1111
1212# TODO: Expand to lib/ and tests/ as linting issues are resolved.
13- RUFF_TARGET = lib/pyld/context_resolver.py lib/pyld/identifier_issuer.py lib/pyld/iri_resolver.py lib/pyld/nquads.py
13+ RUFF_TARGET = lib/pyld/context_resolver.py lib/pyld/identifier_issuer.py lib/pyld/iri_resolver.py lib/pyld/nquads.py lib/pyld/resolved_context.py
1414
1515lint :
1616 ruff check $(RUFF_TARGET )
Original file line number Diff line number Diff line change 1212
1313MAX_ACTIVE_CONTEXTS = 10
1414
15+
1516class ResolvedContext :
1617 """
1718 A cached contex document, with a cache indexed by referencing active context.
1819 """
20+
1921 def __init__ (self , document ):
2022 """
2123 Creates a ResolvedContext with caching for processed contexts
You can’t perform that action at this time.
0 commit comments