fix(playout): quote incompatible <py3.9 type hints
This commit is contained in:
parent
dde1af70b2
commit
74af2112a6
6 changed files with 13 additions and 13 deletions
|
@ -19,12 +19,12 @@ class PypoFile(Thread):
|
|||
name = "file"
|
||||
daemon = True
|
||||
|
||||
file_events_queue: Queue[FileEvents]
|
||||
file_events_queue: "Queue[FileEvents]"
|
||||
file_events: FileEvents
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
file_queue: Queue[FileEvents],
|
||||
file_queue: "Queue[FileEvents]",
|
||||
api_client: ApiClient,
|
||||
):
|
||||
Thread.__init__(self)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue