Skip to content

Commit 6fd7193

Browse files
committed
fix: generic value name
1 parent 5a995da commit 6fd7193

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proselint/config/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ class Config(TypedDict):
3030
)
3131

3232
KT_co = TypeVar("KT_co", bound=Hashable, covariant=True)
33-
KV_co = TypeVar("KV_co", covariant=True)
33+
VT_co = TypeVar("VT_co", covariant=True)
3434

3535

3636
def _deepmerge_dicts(
37-
base: dict[KT_co, KV_co], overrides: dict[KT_co, KV_co]
38-
) -> dict[KT_co, KV_co]:
37+
base: dict[KT_co, VT_co], overrides: dict[KT_co, VT_co]
38+
) -> dict[KT_co, VT_co]:
3939
# fmt: off
4040
return base | overrides | {
4141
key: (

0 commit comments

Comments
 (0)