Skip to content

Commit 2c297e5

Browse files
committed
revert LoadingOptions.idx being Final
1 parent 8509de0 commit 2c297e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema_salad/ref_resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def __init__(
156156
doc_cache: Union[str, bool] = True,
157157
salad_version: Optional[str] = None,
158158
) -> None:
159-
self.idx: Final[IdxType] = NormDict(_url_norm) if idx is None else idx
159+
self.idx: IdxType = NormDict(_url_norm) if idx is None else idx
160160

161161
self.ctx: Final[ContextType] = {}
162162
self.graph = schemagraph if schemagraph is not None else Graph()

0 commit comments

Comments
 (0)