~mvo/ubuntu-sso-client/strawman-lp711413

« back to all changes in this revision

Viewing changes to ubuntu_sso/qt/tests/show_gui.py

Fix pylint warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
# Author: Manuel de la Pena <manuel@canonical.com>
 
3
#
 
4
# Copyright 2011 Canonical Ltd.
 
5
#
 
6
# This program is free software: you can redistribute it and/or modify it
 
7
# under the terms of the GNU General Public License version 3, as published
 
8
# by the Free Software Foundation.
 
9
#
 
10
# This program is distributed in the hope that it will be useful, but
 
11
# WITHOUT ANY WARRANTY; without even the implied warranties of
 
12
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
13
# PURPOSE.  See the GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License along
 
16
# with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
"""Script that shows the qt gui."""
 
18
 
 
19
 
 
20
if __name__ == '__main__':
 
21
    # pylint: disable=C0103,E1101,F0401
 
22
    # show the ui
 
23
    import sys
 
24
    from PyQt4 import Qt
 
25
    app = Qt.QApplication(sys.argv)
 
26
    from qtreactor import qt4reactor
 
27
    qt4reactor.install()
 
28
    from twisted.internet import reactor
 
29
    from ubuntu_sso.qt.gui import UbuntuSSOWizard
 
30
 
 
31
    wizard = UbuntuSSOWizard(app_name='test')
 
32
    wizard.show()
 
33
    reactor.run()