From d317a510308c261570ad06a3e8d224fc4d666a86 Mon Sep 17 00:00:00 2001 From: Lorhan Sohaky <16273730+LorhanSohaky@users.noreply.github.com> Date: Wed, 9 Mar 2022 08:33:25 -0300 Subject: [PATCH] Update fastapi/openapi/utils.py --- fastapi/openapi/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fastapi/openapi/utils.py b/fastapi/openapi/utils.py index fe426f247..792577570 100644 --- a/fastapi/openapi/utils.py +++ b/fastapi/openapi/utils.py @@ -422,8 +422,7 @@ def get_openapi( ) if result: path, security_schemes, path_definitions = result - if prefix: - route.path_format = prefix + route.path_format + route.path_format = prefix + route.path_format if path: paths.setdefault(route.path_format, {}).update(path) if security_schemes: