···11+from kefi.models.plazas.helpers import notify_plaza, select_current_plaza
22+33+44+async def runs_plaza(ctx):
55+ """Task to runs the plaza, that means, create the groups and send the call."""
66+ session = ctx["session"]
77+ plaza = select_current_plaza(session=session)
88+ if plaza:
99+ notify_plaza(session=session, plaza=plaza)
1010+ # In case the helper saves info
1111+ ctx["session"].commit()