From 9b5b853f636027abfe3e7c0ad1051c497ff7f5f1 Mon Sep 17 00:00:00 2001 From: Kushal Subedi Date: Sat, 7 Jan 2023 23:55:22 +0545 Subject: [PATCH 1/3] Removed redundant update method for adding key-value pair in dict. It is simpler to do it directly rather than via update method. This also eliminates the overhead of constructing another dictionary and calling a method, so should slightly improve performance. [ Read at Sourcery] --- docs_src/body_multiple_params/tutorial001.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs_src/body_multiple_params/tutorial001.py b/docs_src/body_multiple_params/tutorial001.py index a73975b3a..9352414f4 100644 --- a/docs_src/body_multiple_params/tutorial001.py +++ b/docs_src/body_multiple_params/tutorial001.py @@ -22,7 +22,7 @@ async def update_item( ): results = {"item_id": item_id} if q: - results.update({"q": q}) + results.["q"]= q if item: - results.update({"item": item}) + results["item"]=item return results From 0d7c4e387f36e4ec67a254b8800f16fde6cd21f5 Mon Sep 17 00:00:00 2001 From: Kushal Subedi Date: Mon, 9 Jan 2023 16:55:03 +0545 Subject: [PATCH 2/3] Update docs_src/body_multiple_params/tutorial001.py Co-authored-by: Irfanuddin Shafi Ahmed --- docs_src/body_multiple_params/tutorial001.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_src/body_multiple_params/tutorial001.py b/docs_src/body_multiple_params/tutorial001.py index 9352414f4..b92df8ec4 100644 --- a/docs_src/body_multiple_params/tutorial001.py +++ b/docs_src/body_multiple_params/tutorial001.py @@ -22,7 +22,7 @@ async def update_item( ): results = {"item_id": item_id} if q: - results.["q"]= q + results["q"]= q if item: results["item"]=item return results From 06d41b9c24f0f2f1544ed307eff64e8b8d4ca3d1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 9 Jan 2023 11:10:28 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs_src/body_multiple_params/tutorial001.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs_src/body_multiple_params/tutorial001.py b/docs_src/body_multiple_params/tutorial001.py index b92df8ec4..4af88e07d 100644 --- a/docs_src/body_multiple_params/tutorial001.py +++ b/docs_src/body_multiple_params/tutorial001.py @@ -22,7 +22,7 @@ async def update_item( ): results = {"item_id": item_id} if q: - results["q"]= q + results["q"] = q if item: - results["item"]=item + results["item"] = item return results