From e279b6e6fc7b9a96653e186b3cc15bfcfb46827d Mon Sep 17 00:00:00 2001 From: evilbeast Date: Wed, 7 Sep 2022 17:58:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dfastapi=5Fexample=E7=9A=84get?= =?UTF-8?q?=5Fcontacts=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi_example/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fastapi_example/main.py b/fastapi_example/main.py index 939e384..b6d25e6 100644 --- a/fastapi_example/main.py +++ b/fastapi_example/main.py @@ -82,7 +82,6 @@ async def user_get_profile(model: models.ClientReqModel): @catch_exception() async def get_contacts(model: models.ClientReqModel): data = client_mgr.get_client(model.guid).get_contacts() - print(data) return response_json(1, data)