We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a995da commit 6fd7193Copy full SHA for 6fd7193
proselint/config/__init__.py
@@ -30,12 +30,12 @@ class Config(TypedDict):
30
)
31
32
KT_co = TypeVar("KT_co", bound=Hashable, covariant=True)
33
-KV_co = TypeVar("KV_co", covariant=True)
+VT_co = TypeVar("VT_co", covariant=True)
34
35
36
def _deepmerge_dicts(
37
- base: dict[KT_co, KV_co], overrides: dict[KT_co, KV_co]
38
-) -> dict[KT_co, KV_co]:
+ base: dict[KT_co, VT_co], overrides: dict[KT_co, VT_co]
+) -> dict[KT_co, VT_co]:
39
# fmt: off
40
return base | overrides | {
41
key: (
0 commit comments