fix(playout): add types

This reverts commit d6348d5575.
This commit is contained in:
jo 2022-09-09 20:23:35 +02:00 committed by Kyle Robbertze
parent 0e1dfaa9ff
commit 4ada25a3ff
6 changed files with 19 additions and 14 deletions

View file

@ -4,6 +4,7 @@ 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 +17,7 @@ class PypoFile(Thread):
def __init__(
self,
file_queue: Queue,
file_queue: Queue[Dict[str, Any]],
api_client: ApiClient,
):
Thread.__init__(self)