(updates)
| 32 | process_completed = asyncio.Event() |
| 33 | |
| 34 | async def fake_process_new_updates(updates): |
| 35 | current = asyncio.current_task() |
| 36 | task_was_tracked_during_run.append(current in bot._pending_tasks) |
| 37 | process_completed.set() |
| 38 | |
| 39 | async def fake_get_me(): |
| 40 | return _make_fake_me() |
nothing calls this directly
no test coverage detected
searching dependent graphs…