(id: str, item: Item)
| 18 | |
| 19 | @app.put("/items/{id}") |
| 20 | def update_item(id: str, item: Item): |
| 21 | json_compatible_item_data = jsonable_encoder(item) |
| 22 | fake_db[id] = json_compatible_item_data |
nothing calls this directly
no test coverage detected
searching dependent graphs…