Skip to content

Commit 8a7cb2f

Browse files
committed
refactor: change types of workable
1 parent ccbbbba commit 8a7cb2f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/mpyflow/library/workable/element.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from mpyflow.shared.interfaces.logger import SyncStdoutInterface
1212
from mpyflow.shared.interfaces.work import WorkInterface
1313
from multiprocessing import synchronize
14-
from typing import final, AsyncIterator
14+
from typing import Any, final, AsyncIterator
1515

1616

1717
@final
@@ -90,7 +90,7 @@ def __init__(
9090
self,
9191
ctx: multiprocessing.context.SpawnContext,
9292
work_instance: WorkInterface[IN, OT],
93-
io_instance: IOInterface[IN, OT],
93+
io_instance: IOInterface[IN, Any],
9494
/,
9595
) -> None:
9696
super().__init__()

0 commit comments

Comments
 (0)