fix(playout): py36 compatibility broken typings

This partially reverts commit 5505222df6.
This commit is contained in:
jo 2022-09-01 16:18:21 +02:00 committed by Jonas L
parent d93ded9dd0
commit d6348d5575
6 changed files with 14 additions and 19 deletions

View file

@ -4,7 +4,6 @@ import stat
import time
from queue import Empty, Queue
from threading import Thread
from typing import Any, Dict
from libretime_api_client.v2 import ApiClient
from loguru import logger
@ -16,7 +15,7 @@ class PypoFile(Thread):
def __init__(
self,
file_queue: Queue[Dict[str, Any]],
file_queue: Queue,
api_client: ApiClient,
):
Thread.__init__(self)