From e1197217ede380fd67a385eabfc693e5c2c20972 Mon Sep 17 00:00:00 2001 From: Lorhan Sohaky Date: Fri, 11 Mar 2022 06:38:47 -0300 Subject: [PATCH] Fix PR review --- fastapi/openapi/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapi/openapi/utils.py b/fastapi/openapi/utils.py index 792577570..b2749c24c 100644 --- a/fastapi/openapi/utils.py +++ b/fastapi/openapi/utils.py @@ -393,7 +393,7 @@ def get_openapi( terms_of_service: Optional[str] = None, contact: Optional[Dict[str, Union[str, Any]]] = None, license_info: Optional[Dict[str, Union[str, Any]]] = None, - prefix: Optional[str] = "", + prefix: str = "", ) -> Dict[str, Any]: info: Dict[str, Any] = {"title": title, "version": version} if description: @@ -422,7 +422,7 @@ def get_openapi( ) if result: path, security_schemes, path_definitions = result - route.path_format = prefix + route.path_format + route.path_format = f"{prefix}{route.path_format}" if path: paths.setdefault(route.path_format, {}).update(path) if security_schemes: