From 85ea29c93c31c1d00d959752d3fae5bb31c81842 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 23 Nov 2024 14:05:52 +0100 Subject: [PATCH] fix: pydantic - typing_extensions type-dict --- freqtrade/rpc/api_server/webserver_bgwork.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/freqtrade/rpc/api_server/webserver_bgwork.py b/freqtrade/rpc/api_server/webserver_bgwork.py index 7ba205f56..75aadb78e 100644 --- a/freqtrade/rpc/api_server/webserver_bgwork.py +++ b/freqtrade/rpc/api_server/webserver_bgwork.py @@ -1,6 +1,8 @@ -from typing import Any, Literal, NotRequired, TypedDict +from typing import Any, Literal, NotRequired from uuid import uuid4 +from typing_extensions import TypedDict + from freqtrade.exchange.exchange import Exchange