From 8ec45760d1fbef0a5c984f0a13177023d1e447ae Mon Sep 17 00:00:00 2001 From: odiseo0 Date: Wed, 13 Jul 2022 11:00:06 -0400 Subject: [PATCH] Remove `TypedDict` from the main `typing` import --- gotrue/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gotrue/types.py b/gotrue/types.py index fd4f6660..21d0fe7e 100644 --- a/gotrue/types.py +++ b/gotrue/types.py @@ -4,7 +4,7 @@ from datetime import datetime from enum import Enum from time import time -from typing import Any, Callable, Dict, List, Optional, Type, TypeVar, Union, TypedDict +from typing import Any, Callable, Dict, List, Optional, Type, TypeVar, Union from uuid import UUID if sys.version_info >= (3, 8):