Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix for Starlette CORS The Starlette app with setting cors=true enables all origins, but only permits requests with the GET method. The CORSMiddleware for Starlette requires specifying `allow_methods=['*']` to enable all common request methods. * Add noqa to break line break This line was flagged by flake 8 for being 81 characters. I think that this line it more readable as is rather than splitting up into multiple lines. * Revise indentation on CORS middleware
- Loading branch information