client-py/venv/lib/python3.12/site-packages/pydocstyle/__main__.py
2026-05-02 13:34:53 +05:00

20 lines
288 B
Python

#! /usr/bin/env python
"""Static analysis tool for checking docstring conventions and style.
The repository is located at:
http://github.com/PyCQA/pydocstyle
"""
__all__ = ()
def main() -> None:
from pydocstyle import cli
cli.main()
if __name__ == '__main__':
main()