File size: 313 Bytes
301a0ac |
1 2 3 4 5 6 7 8 9 10 11 |
from python.helpers.extension import Extension
from agent import LoopData
class WaitingForInputMsg(Extension):
async def execute(self, loop_data: LoopData = LoopData(), **kwargs):
# show temp info message
if self.agent.number == 0:
self.agent.context.log.set_initial_progress()
|