Skip to content

Commit

Permalink
Fix TypeVar names
Browse files Browse the repository at this point in the history
  • Loading branch information
cg123 committed Dec 12, 2023
1 parent 49ad236 commit f2158e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mergekit/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ class MergeOptions(BaseModel):
lazy_unpickle: bool = False


T_K = TypeVar("KT")
T_V = TypeVar("VT")
T_K = TypeVar("T_K")
T_V = TypeVar("T_V")


class ImmutableMap(
Expand Down

0 comments on commit f2158e3

Please sign in to comment.