From b77c73af059fd5ad890d98525582a9afca6b5dc7 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Tue, 27 Feb 2024 23:17:18 +0100 Subject: [PATCH] fix tests --- af_benchmark/executor/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/af_benchmark/executor/base.py b/af_benchmark/executor/base.py index d2d2c29..98db82d 100644 --- a/af_benchmark/executor/base.py +++ b/af_benchmark/executor/base.py @@ -7,7 +7,7 @@ class BaseExecutor(ABC): """ @abstractmethod - def __init__(**kwargs): + def __init__(self, **kwargs): return def execute(self, func, args, **kwargs):