Total Complexity | 0 |
Total Lines | 21 |
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 | |||
15 | # Local imports |
||
16 | from qtsass import cli |
||
17 | |||
18 | |||
19 | if __name__ == '__main__': |
||
20 | cli.main() |
||
21 |