Add __main__

Allows execution using python -m yamllint
This commit is contained in:
John Vandenberg
2017-03-21 16:00:58 +07:00
parent ff1c9ad221
commit 38d14c7314

4
yamllint/__main__.py Normal file
View File

@@ -0,0 +1,4 @@
from yamllint.cli import run
if __name__ == '__main__':
run()