| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/bin/env python |
||
| 2 | # -*- coding: utf-8 -*- |
||
| 3 | # ----------------------------------------------------------------------------- |
||
| 4 | # Copyright (c) 2015 Yann Lanthony |
||
| 5 | # Copyright (c) 2017-2018 Spyder Project Contributors |
||
| 6 | # |
||
| 7 | # Licensed under the terms of the MIT License |
||
| 8 | # (See LICENSE.txt for details) |
||
| 9 | # ----------------------------------------------------------------------------- |
||
| 10 | """qtsass command line interface.""" |
||
| 11 | |||
| 12 | # Standard library imports |
||
| 13 | from __future__ import absolute_import |
||
| 14 | import sys |
||
| 15 | |||
| 16 | # Local imports |
||
| 17 | from qtsass import cli |
||
| 18 | |||
| 19 | |||
| 20 | def entry_point(): |
||
| 21 | """qtsass's CLI entry point.""" |
||
| 22 | |||
| 23 | cli.main(sys.argv[1:]) |
||
| 24 | |||
| 25 | if __name__ == '__main__': |
||
| 26 | entry_point() |
||
| 27 |