Closed jacobtomlinson closed 3 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 95.03%. Comparing base (
87063fc
) to head (8f1eaf0
). Report is 126 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Fixes #285
When calling
asyncio.get_event_loop()
in an__init__()
was causing problems in IPython. This PR moves that call into a coroutine so that is run via theanyio
portal where there is guaranteed to be an event loop.