Closed
Description
Current Situation
Currently Uvicorn gets imported in reactpy.backend._common
. This is a problem because not all backends require uvicorn (e.g. Flask). Thus you can get an import error.
Proposed Actions
Make uvicorn a common dependency or import it in a try
block.