maybe this will suit the unittest loader better

This commit is contained in:
Jakob Ketterl 2021-04-10 02:12:18 +02:00
parent 907359df82
commit 1f91908e06
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ from multiprocessing.connection import Pipe, wait
from datetime import datetime, timedelta
from queue import Queue, Full, Empty
from itertools import groupby
from typing import List
import logging
@ -214,7 +215,7 @@ class WaveFile(object):
class AudioWriter(object):
def __init__(self, active_dsp, interval, profiles: list[AudioChopperProfile]):
def __init__(self, active_dsp, interval, profiles: List[AudioChopperProfile]):
self.dsp = active_dsp
self.interval = interval
self.profiles = profiles