We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dfcad0 commit 1c2abe7Copy full SHA for 1c2abe7
src/openapi_test_client/libraries/api/api_client_generator.py
@@ -273,7 +273,7 @@ def update_endpoint_functions(
273
# Regex for API class definition
274
regex_api_class = re.compile(rf"class {api_class.__name__}\(\S+{BASE_API_CLASS_NAME_SUFFIX}\):")
275
# Regex for TAGs and for individual tag inside TAGs
276
- regex_tags = re.compile(r"TAGs = \([^)]*\)", flags=re.MULTILINE)
+ regex_tags = re.compile(r"TAGs = \((.*?)\)\n", flags=re.MULTILINE | re.DOTALL)
277
regex_tag = re.compile(r'"(?P<tag>[^"]*)"', flags=re.MULTILINE)
278
# Regex for each endpoint function block
279
tab = f"(?:{TAB}|\t)"
0 commit comments