From 90a78a18fd3ad01aa1e5880788f381cad96a2b08 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Tue, 9 Jul 2024 13:09:31 +0300 Subject: [PATCH] fix (#1574): use typing_extensions.TypedDict --- faststream/confluent/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/faststream/confluent/config.py b/faststream/confluent/config.py index 9ec3518471..218c2b9c5a 100644 --- a/faststream/confluent/config.py +++ b/faststream/confluent/config.py @@ -1,5 +1,7 @@ from enum import Enum -from typing import Any, Callable, TypedDict +from typing import Any, Callable + +from typing_extensions import TypedDict class BuiltinFeatures(Enum):