fix weakref type

This commit is contained in:
Gilles Boccon-Gibod
2023-06-04 13:17:32 -07:00
parent a118792279
commit ab4390fbde
+1 -1
View File
@@ -282,7 +282,7 @@ class FfplayOutput(QueuedOutput):
# -----------------------------------------------------------------------------
class UiServer:
speaker: Speaker
speaker: weakref.ReferenceType[Speaker]
port: int
def __init__(self, speaker: Speaker, port: int) -> None: