chore: remove non-needed type_checking import

This commit is contained in:
Matthias
2024-10-20 11:45:39 +02:00
parent 6d169784ed
commit 1183517c3a

View File

@@ -9,7 +9,7 @@ import asyncio
import logging
import socket
from threading import Thread
from typing import TYPE_CHECKING, Any, Callable, TypedDict, Union
from typing import Any, Callable, TypedDict, Union
import websockets
from pydantic import ValidationError
@@ -31,10 +31,6 @@ from freqtrade.rpc.api_server.ws_schemas import (
)
if TYPE_CHECKING:
import websockets.connect
class Producer(TypedDict):
name: str
host: str