We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e9ac0c commit ae73156Copy full SHA for ae73156
src/vcspull/types.py
@@ -26,6 +26,6 @@ class Config(t.TypedDict):
26
Used for untyped access to config data before parsing.
27
"""
28
29
- settings: t.Optional[t.Dict[str, t.Any]]
30
- repositories: t.Optional[t.List[t.Dict[str, t.Any]]]
31
- includes: t.Optional[t.List[str]]
+ settings: dict[str, t.Any] | None
+ repositories: list[dict[str, t.Any]] | None
+ includes: list[str] | None
0 commit comments