From 1880fc1a1d3ce9de0184db6845dd8934d5cc95c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E9=9C=87=E4=B8=9C?= Date: Tue, 19 Nov 2024 21:49:08 +0800 Subject: [PATCH] minor fix (#1418) --- lhotse/parallel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lhotse/parallel.py b/lhotse/parallel.py index f9ab8e55f..dd882ab4e 100644 --- a/lhotse/parallel.py +++ b/lhotse/parallel.py @@ -88,7 +88,7 @@ class ParallelExecutor: >>> class MyRunner: ... def __init__(self): - ... self.name = name + ... pass ... def __call__(self, x): ... return f'processed: {x}' ...