From 5841b56f2d55e0b0d7b241aa0cf66d193e88e5fe Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 23 Nov 2024 14:18:05 +0100 Subject: [PATCH] chore: NotRequired from typing_extensions --- freqtrade/rpc/api_server/webserver_bgwork.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/rpc/api_server/webserver_bgwork.py b/freqtrade/rpc/api_server/webserver_bgwork.py index 75aadb78e..4c335a2f2 100644 --- a/freqtrade/rpc/api_server/webserver_bgwork.py +++ b/freqtrade/rpc/api_server/webserver_bgwork.py @@ -1,7 +1,7 @@ -from typing import Any, Literal, NotRequired +from typing import Any, Literal from uuid import uuid4 -from typing_extensions import TypedDict +from typing_extensions import NotRequired, TypedDict from freqtrade.exchange.exchange import Exchange