Skip to content

MyPy errors when using tomlkit to modify toml documents #326

@florian-cl

Description

@florian-cl

When using tomlkit to modify a tomldocument, mypy throws a bunch of errors that I don't know how to fix.
Example:

import tomlkit
from pathlib import Path

path = Path("data.toml")

path.write_text("""
[foo]
bar = 'baz'
[foo.bla]
blub = 'blib'
""")

data = tomlkit.parse(path.read_text(encoding="utf-8"))
data["foo"]["bar"] = "quux"
data["foo"]["bla"]["blub"] = "bleb"
path.write_bytes(tomlkit.dumps(data).encode("utf-8"))

Output

tomlkit_issue.py:14: error: Unsupported target for indexed assignment ("Item | Container")  [index]
tomlkit_issue.py:15: error: Value of type "Item | Container" is not indexable  [index]
tomlkit_issue.py:15: error: Unsupported target for indexed assignment ("Any | Item | Container")  [index]
Found 3 errors in 1 file (checked 1 source file)

Is there any fix for this?
Any help is greatly appreciated :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions