From 551ea69dca61d45709948fd24d20b24ca700e26c Mon Sep 17 00:00:00 2001 From: Jack Leow Date: Fri, 15 Nov 2024 19:09:27 -0800 Subject: [PATCH] Undo changes to structs.py. --- aiokafka/structs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aiokafka/structs.py b/aiokafka/structs.py index 8e968b4b..3db1d20a 100644 --- a/aiokafka/structs.py +++ b/aiokafka/structs.py @@ -117,8 +117,8 @@ class RecordMetadata(NamedTuple): "" -KT = TypeVar("KT", covariant=True) -VT = TypeVar("VT", covariant=True) +KT = TypeVar("KT") +VT = TypeVar("VT") @dataclass