From 8bed89157c39882e2820173effaf9ac2562a1619 Mon Sep 17 00:00:00 2001 From: Jonny Heggheim Date: Wed, 15 Feb 2023 12:07:35 +0200 Subject: [PATCH] Remove _typed_dict_test_helper.py that is now included in the source tarball --- _typed_dict_test_helper.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 _typed_dict_test_helper.py diff --git a/_typed_dict_test_helper.py b/_typed_dict_test_helper.py deleted file mode 100644 index 396a94f..0000000 --- a/_typed_dict_test_helper.py +++ /dev/null @@ -1,8 +0,0 @@ -from __future__ import annotations - -from typing import Generic, Optional, T -from typing_extensions import TypedDict - - -class FooGeneric(TypedDict, Generic[T]): - a: Optional[T]