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.
dict.update
1 parent 344fdd4 commit 3b6926eCopy full SHA for 3b6926e
mdformat_pyproject/plugin.py
@@ -100,7 +100,8 @@ def update_mdit(mdit: markdown_it.MarkdownIt) -> None:
100
pyproject_opts = _parse_pyproject(pyproject_path)
101
if pyproject_opts is not None:
102
cli_opts = _reload_cli_opts()
103
- mdformat_options.update(**pyproject_opts, **cli_opts)
+ mdformat_options.update(**pyproject_opts)
104
+ mdformat_options.update(**cli_opts)
105
106
107
RENDERERS: MutableMapping[str, Render] = {}
0 commit comments