ansible-later/env_27/lib/python2.7/site-packages/pydocstyle/__main__.py

20 lines
298 B
Python
Raw Normal View History

2019-04-11 15:56:20 +02:00
#! /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()