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']
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