From 4eeac6f738103e6e443cbd4f2781f0c12c1d1b19 Mon Sep 17 00:00:00 2001 From: Dominic Davis-Foster Date: Fri, 6 Aug 2021 08:36:12 +0100 Subject: [PATCH] Lint --- pypi_json/typehints.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pypi_json/typehints.py b/pypi_json/typehints.py index 3fef712..fcfab8e 100644 --- a/pypi_json/typehints.py +++ b/pypi_json/typehints.py @@ -42,7 +42,8 @@ else: # pragma: no cover try: # 3rd party - from typing_extensions import TypedDict + import typing_extensions + TypedDict = typing_extensions.TypedDict except ImportError: TypedDict = dict