We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b587ff5 commit d3a3e7eCopy full SHA for d3a3e7e
1 file changed
tests/fixture/workable.py
@@ -15,8 +15,8 @@
15
def two_sync_workables(
16
factory_ctx: SpawnContext,
17
) -> tuple[Workable[str, str], Workable[str, str]]:
18
- que_1 = SyncQueue[str, str](factory_ctx, 2, str_to_bytes, bytes_to_str)
19
- que_2 = SyncQueue[str, str](factory_ctx, 2, str_to_bytes, bytes_to_str)
+ que_1 = SyncQueue[str](factory_ctx, 2, str_to_bytes, bytes_to_str)
+ que_2 = SyncQueue[str](factory_ctx, 2, str_to_bytes, bytes_to_str)
20
return (
21
Workable[str, str](factory_ctx, PassThrough(), que_1),
22
Workable[str, str](factory_ctx, PassThrough(), que_2),
0 commit comments