📝 Remove *, from functions where it's not needed #1234 (#1239)

* Fix for - [FEATURE] Remove *, where it's not needed #1234

* 🔥 Remove unnecessary arg *,

* 🎨 Update docs format highlight lines

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Pankaj Giri
2020-06-13 01:11:44 +05:30
committed by GitHub
parent 1b2a7546af
commit 7e2518350a
32 changed files with 32 additions and 33 deletions

View File

@@ -13,7 +13,6 @@ class Item(BaseModel):
@app.put("/items/{item_id}")
async def update_item(
*,
item_id: int,
item: Item = Body(
...,
@@ -23,7 +22,7 @@ async def update_item(
"price": 35.4,
"tax": 3.2,
},
)
),
):
results = {"item_id": item_id, "item": item}
return results