From f6bfc350c987ee31035dfc0aee215da1e4933e25 Mon Sep 17 00:00:00 2001 From: pengtao Date: Wed, 15 Dec 2021 15:47:25 +0800 Subject: [PATCH] 1 --- main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index f889c48..48a2a8a 100644 --- a/main.py +++ b/main.py @@ -27,8 +27,9 @@ tags_metadata = [ def create_app(): - application = FastAPI(dependencies=[Depends(get_token_header)], - openapi_tags=tags_metadata) + # application = FastAPI(dependencies=[Depends(get_token_header)], + # openapi_tags=tags_metadata) + application = FastAPI() return application