__main__.py 288 B

1234567891011121314151617181920
  1. #! /usr/bin/env python
  2. """Static analysis tool for checking docstring conventions and style.
  3. The repository is located at:
  4. http://github.com/PyCQA/pydocstyle
  5. """
  6. __all__ = ()
  7. def main() -> None:
  8. from pydocstyle import cli
  9. cli.main()
  10. if __name__ == '__main__':
  11. main()