Skip to content

Commit 3636cab

Browse files
committed
refactor: Mark configuration typed dict as non-total
1 parent 58e7126 commit 3636cab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/griffe2md/_internal/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def load_config() -> ConfigDict | None:
5252
return cast("ConfigDict", config)
5353

5454

55-
class ConfigDict(TypedDict):
55+
class ConfigDict(TypedDict, total=False):
5656
"""Configuration for griffe2md, griffe and mkdocstrings."""
5757

5858
allow_inspection: bool

0 commit comments

Comments
 (0)