Skip to content

Commit

Permalink
Avoid type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Oct 23, 2023
1 parent a12c746 commit 32562d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ini2toml/drivers/lite_toml.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 32562d8

Please sign in to comment.