MCPcopy Create free account
hub / github.com/executablebooks/markdown-it-py / __setitem__

Method __setitem__

markdown_it/utils.py:75–76  ·  view source on GitHub ↗
(self, key: str, value: Any)

Source from the content-addressed store, hash-verified

73 return self._options[key] # type: ignore[literal-required]
74
75 def __setitem__(self, key: str, value: Any) -> None:
76 self._options[key] = value # type: ignore[literal-required]
77
78 def __delitem__(self, key: str) -> None:
79 del self._options[key] # type: ignore

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected