comparison: Plugins/PluginPep8Checker.py
Plugins/PluginPep8Checker.py
- branch
- Py2 comp.
- changeset 2525
- 8b507a9a2d40
- parent 2407
- b98cc8ee1142
- child 2791
- a9577f248f04
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing the PEP 8 Checker plugin. |
7 Module implementing the PEP 8 Checker plugin. |
8 """ |
8 """ |
|
9 |
|
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
9 |
11 |
10 import os |
12 import os |
11 |
13 |
12 from PyQt4.QtCore import QObject |
14 from PyQt4.QtCore import QObject |
13 |
15 |
43 """ |
45 """ |
44 Constructor |
46 Constructor |
45 |
47 |
46 @param ui reference to the user interface object (UI.UserInterface) |
48 @param ui reference to the user interface object (UI.UserInterface) |
47 """ |
49 """ |
48 super().__init__(ui) |
50 super(Pep8CheckerPlugin, self).__init__(ui) |
49 self.__ui = ui |
51 self.__ui = ui |
50 self.__initialize() |
52 self.__initialize() |
51 |
53 |
52 def __initialize(self): |
54 def __initialize(self): |
53 """ |
55 """ |