Fix: actions typehint

This commit is contained in:
Bertrand Benjamin 2022-04-09 16:16:39 +02:00
parent 4e7805f40d
commit dca69f94aa
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from bopytex.tasks import Task
class Scheduler:
def __init__(self, actions: list, done: list[str] = None):
def __init__(self, actions: dict, done: list[str] = None):
self.actions = actions
if done is None: