Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions aiomultiprocess/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# Licensed under the MIT license

import asyncio
import logging
import os
import queue
import traceback
Expand Down Expand Up @@ -38,8 +37,6 @@
CHILD_CONCURRENCY = 16 # number of tasks to execute simultaneously per child process
_T = TypeVar("_T")

log = logging.getLogger(__name__)


class PoolWorker(Process):
"""Individual worker process for the async pool."""
Expand Down