As I am new to pytype and unsure whether this behaviour is a bug or not, does pytype allow the redeclaration of TypedDict keys?
from typing import TypedDict
class my_map_type(TypedDict):
y: str
y: int
my_map: my_map_type = {"y":1, "y":"a"}

when mypy return

As I am new to pytype and unsure whether this behaviour is a bug or not, does pytype allow the redeclaration of TypedDict keys?
when mypy return
