From 32fbbede72e8da20b2ba06eef1f74733f6086d45 Mon Sep 17 00:00:00 2001 From: Jack McCluskey Date: Mon, 6 Jan 2025 10:35:04 -0500 Subject: [PATCH] fix clobbered import from merge --- .../python/apache_beam/typehints/native_type_compatibility.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdks/python/apache_beam/typehints/native_type_compatibility.py b/sdks/python/apache_beam/typehints/native_type_compatibility.py index b482a22ebd59..00172a9d453e 100644 --- a/sdks/python/apache_beam/typehints/native_type_compatibility.py +++ b/sdks/python/apache_beam/typehints/native_type_compatibility.py @@ -25,9 +25,13 @@ import sys import types import typing +from typing import Generic +from typing import TypeVar from apache_beam.typehints import typehints +T = TypeVar('T') + _LOGGER = logging.getLogger(__name__) # Describes an entry in the type map in convert_to_beam_type.