We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d25233 commit efc8dc3Copy full SHA for efc8dc3
openapi_core/templating/paths/finders.py
@@ -41,7 +41,8 @@ def find(self, request):
41
def _get_paths_iter(self, full_url_pattern):
42
template_paths = []
43
for path_pattern, path in iteritems(self.spec.paths):
44
- # simple path. Return right away since it is always the most concrete
+ # simple path.
45
+ # Return right away since it is always the most concrete
46
if full_url_pattern.endswith(path_pattern):
47
path_result = TemplateResult(path_pattern, {})
48
yield (path, path_result)
0 commit comments