mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-14 17:20:39 +00:00
20 lines
298 B
Python
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()
|