diff --git a/sdks/python/apache_beam/typehints/typehints.py b/sdks/python/apache_beam/typehints/typehints.py index 5da65fa352d4..eb9254a5e6c3 100644 --- a/sdks/python/apache_beam/typehints/typehints.py +++ b/sdks/python/apache_beam/typehints/typehints.py @@ -416,7 +416,7 @@ def __repr__(self): return 'Any' def __hash__(self): - # TODO(BEAM - 3730) + # TODO(BEAM-3730): Fix typehints.TypeVariable issues with __hash__. return hash(id(self)) def type_check(self, instance): @@ -432,7 +432,7 @@ def __eq__(self, other): return type(self) == type(other) and self.name == other.name def __hash__(self): - # TODO(BEAM - 3730) + # TODO(BEAM-3730): Fix typehints.TypeVariable issues with __hash__. return hash(id(self)) def __repr__(self):