From 8ce119281101e07197df6cf63d413ec00f90a8f6 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Fri, 9 Apr 2021 18:29:36 +0200 Subject: [PATCH] type hinting is invalid. this shouldn't work, but obviously type hinting is broken. remove :( --- owrx/audio/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrx/audio/handler.py b/owrx/audio/handler.py index 51c5dcc..366fdd9 100644 --- a/owrx/audio/handler.py +++ b/owrx/audio/handler.py @@ -4,7 +4,7 @@ from owrx.audio import AudioChopper class AudioHandler(Output): - def __init__(self, active_dsp: "csdr.csdr.Dsp", mode: str): + def __init__(self, active_dsp, mode: str): self.dsp = active_dsp self.mode = Modes.findByModulation(mode) if mode is None or not isinstance(self.mode, AudioChopperMode):