Removed unused import in test.

This commit is contained in:
Eric Traut 2024-05-21 16:45:54 -07:00
parent b93dc627fc
commit 4a8b2dbbdd

View File

@ -1,6 +1,6 @@
# This sample tests support for inlined TypedDict definitions.
from typing import Dict, TypedDict
from typing import Dict
td1: dict[{"a": int, "b": str}] = {"a": 0, "b": ""}