Optimize regexp pattern in get_path_param_names (#1243)

This commit is contained in:
Kazantcev Andrey 2020-06-12 22:59:32 +03:00 committed by GitHub
parent 535247ffc4
commit 434d32b891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def get_model_definitions(
def get_path_param_names(path: str) -> Set[str]: def get_path_param_names(path: str) -> Set[str]:
return {item.strip("{}") for item in re.findall("{[^}]*}", path)} return set(re.findall("{(.*?)}", path))
def create_response_field( def create_response_field(