You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After debugging testing, operation_ The tags in Autodoc are not effective.
Solution: Need to adjust code sanic_ext/extensions/openapis/builders. py (line 153)
The adjusted code is
def autodoc(self, docstring: str):
y = YamlStyleParametersParser(docstring)
self._autodoc = y.to_openAPI_3()
if self._autodoc.get('tags'):
self.tags = self._autodoc['tags']
The text was updated successfully, but these errors were encountered:
AllenCHM
changed the title
The tags in OpenAPI yaml are not effective [Bug]
[Bug] The tags in OpenAPI yaml are not effective
May 22, 2024
After testing, the tag is not effective。
After debugging testing, operation_ The tags in Autodoc are not effective.
Solution: Need to adjust code sanic_ext/extensions/openapis/builders. py (line 153)
The adjusted code is
The text was updated successfully, but these errors were encountered: