Skip to content

Commit efc8dc3

Browse files
committed
path finder comment line too long fix
1 parent 9d25233 commit efc8dc3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openapi_core/templating/paths/finders.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ def find(self, request):
4141
def _get_paths_iter(self, full_url_pattern):
4242
template_paths = []
4343
for path_pattern, path in iteritems(self.spec.paths):
44-
# simple path. Return right away since it is always the most concrete
44+
# simple path.
45+
# Return right away since it is always the most concrete
4546
if full_url_pattern.endswith(path_pattern):
4647
path_result = TemplateResult(path_pattern, {})
4748
yield (path, path_result)

0 commit comments

Comments
 (0)