ansible-later/env_27/lib/python2.7/site-packages/pydocstyle/__main__.py
Robert Kaussow 10aaa8e7e3 fix pytest
2019-04-11 15:56:20 +02:00

20 lines
298 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():
from pydocstyle import cli
cli.main()
if __name__ == '__main__':
main()