From 758e532a6ab2906debbb65cc1f39722061be7317 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 8 Aug 2024 20:21:02 +0200 Subject: [PATCH] chore: add todo to uvicorn workaround --- freqtrade/rpc/api_server/uvicorn_threaded.py | 1 + 1 file changed, 1 insertion(+) diff --git a/freqtrade/rpc/api_server/uvicorn_threaded.py b/freqtrade/rpc/api_server/uvicorn_threaded.py index d717c5567..07faaff53 100644 --- a/freqtrade/rpc/api_server/uvicorn_threaded.py +++ b/freqtrade/rpc/api_server/uvicorn_threaded.py @@ -8,6 +8,7 @@ def asyncio_setup() -> None: # pragma: no cover # Set eventloop for win32 setups # Reverts a change done in uvicorn 0.15.0 - which now sets the eventloop # via policy. + # TODO: is this workaround actually needed? import sys if sys.version_info >= (3, 8) and sys.platform == "win32":