Total Complexity | 0 |
Total Lines | 24 |
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 | # yapf: disable |
||
13 | |||
14 | from __future__ import absolute_import |
||
15 | |||
16 | # Local imports |
||
17 | from qtsass import cli |
||
18 | |||
19 | |||
20 | # yapf: enable |
||
21 | |||
22 | if __name__ == '__main__': |
||
23 | cli.main() |
||
24 |