diff: make the context menu more intuitive
[git-cola.git] / qtpy / __main__.py
bloba8f993c01acebb4f86bea6e65e2918df7e8b895c
1 # -----------------------------------------------------------------------------
2 # Copyright © 2009- The QtPy Contributors
4 # Released under the terms of the MIT License
5 # (see LICENSE.txt for details)
6 # -----------------------------------------------------------------------------
8 """Dev CLI entry point for QtPy, a compat layer for the Python Qt bindings."""
10 import qtpy.cli
13 def main():
14 return qtpy.cli.main()
17 if __name__ == "__main__":
18 main()