You were asked to build a simple library API using Flask. After finishing up the project, you've noticed that you've made some mistakes in the author names. To correct those mistakes, you need to create a PUT request that accepts JSON with the new author name and then updates the library:
| URL | Method | Description |
| /book/<book_title> | PUT |
Updates one book |
Use
request.json['Author'] to get the new author nameReturn only the updated book info, not the whole library