Search code examples
pythonmypypyproject.toml

Add mypy options --enable-incomplete-feature=Unpack in pyproject.toml


I would like to use the experimental typing.Unpack in my project.

In the CLI command, it works when adding --enable-incomplete-feature=Unpack.

However, I have mypy issues reported by pyright (in neovim), therefore I would like to add this option in the section mypy of pyproject.toml.

How can I achieve it?


Solution

  • It should be like this

    [tool.mypy]
    enable_incomplete_feature = ["Unpack"]