Skip to content

Commit 1c2abe7

Browse files
committed
Fix regex for API tags to handle tag name with parentheses
1 parent 7dfcad0 commit 1c2abe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/openapi_test_client/libraries/api/api_client_generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def update_endpoint_functions(
273273
# Regex for API class definition
274274
regex_api_class = re.compile(rf"class {api_class.__name__}\(\S+{BASE_API_CLASS_NAME_SUFFIX}\):")
275275
# Regex for TAGs and for individual tag inside TAGs
276-
regex_tags = re.compile(r"TAGs = \([^)]*\)", flags=re.MULTILINE)
276+
regex_tags = re.compile(r"TAGs = \((.*?)\)\n", flags=re.MULTILINE | re.DOTALL)
277277
regex_tag = re.compile(r'"(?P<tag>[^"]*)"', flags=re.MULTILINE)
278278
# Regex for each endpoint function block
279279
tab = f"(?:{TAB}|\t)"

0 commit comments

Comments
 (0)