diff --git a/src/ini2toml/drivers/lite_toml.py b/src/ini2toml/drivers/lite_toml.py index 130c4f0..43d1533 100644 --- a/src/ini2toml/drivers/lite_toml.py +++ b/src/ini2toml/drivers/lite_toml.py @@ -7,7 +7,7 @@ from tomli_w import dumps except ImportError: # pragma: no cover # Let's try another API-compatible popular library as a last hope - from toml import dumps # type: ignore[import] + from toml import dumps # type: ignore[import-untyped] from ..types import IntermediateRepr from . import plain_builtins