10 lines
236 B
Python
10 lines
236 B
Python
import asyncio
|
|
from loguru import logger
|
|
from .base import BaseProgressActionService
|
|
|
|
|
|
class WaitProgressActionService(BaseProgressActionService):
|
|
|
|
async def process(self):
|
|
await asyncio.sleep(self.progress_action.wait_for)
|