It's the freaking tornado that still has not been updated properly with the asyncio updates in Windows.
Add the following in the imports section to the asyncio.py file in the tornado distribution ({Python}/Lib/site-packages/tornado/platform/asyncio.py):
---8<---
import sys
if sys.platform == 'win32':
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
---8<---