Skip to content

Commit

Permalink
fix plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed May 31, 2023
1 parent d7fc201 commit 5f0a149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown_it/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class OptionsDict(MutableMappingABC): # type: ignore
# but we keep it for backwards compatibility.

def __init__(self, options: OptionsType) -> None:
self._options = options
self._options = dict(options)

def __getitem__(self, key: str) -> Any:
return self._options[key] # type: ignore[literal-required]
Expand Down

0 comments on commit 5f0a149

Please sign in to comment.