Source code for protobunny.asyncio.backends.redis.queues import logging from .. import ( BaseAsyncQueue, ) log = logging.getLogger(__name__) [docs] class AsyncQueue(BaseAsyncQueue): pass