Skip to content

Commit dfc4aa8

Browse files
committed
Add type: ignore for _fill arg-type (Mapping vs Dict mutation)
1 parent 88403da commit dfc4aa8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

confection/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ def _make(
902902
if not is_interpolated:
903903
config = Config(orig_config).interpolate()
904904
filled, _, resolved = cls._fill(
905-
config, schema, validate=validate, overrides=overrides, resolve=resolve
905+
config, schema, validate=validate, overrides=overrides, resolve=resolve # type: ignore[arg-type]
906906
)
907907
filled = Config(filled, section_order=section_order)
908908
# Check that overrides didn't include invalid properties not in config

0 commit comments

Comments
 (0)