Attempt to fix CI, which is hitting errors that I'm not seeing locally.

This commit is contained in:
Eric Traut 2020-09-04 21:22:42 -07:00
parent 5979e3423d
commit 01637af00c

View File

@ -1,8 +1,7 @@
# This sample tests bidirectional type inference (expected type) for
# lists that include TypedDicts.
from typing import List
from typing_extensions import TypedDict
from typing import List, TypedDict
MessageTypeDef = TypedDict("MessageTypeDef", {"Id": str, "Handle": str})