From 32562d83084232cd85a77337a8cb5e3d7552a431 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Mon, 23 Oct 2023 12:47:24 +0100 Subject: [PATCH] Avoid type errors --- src/ini2toml/drivers/lite_toml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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