comparison: Plugins/PluginSyntaxChecker.py
Plugins/PluginSyntaxChecker.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 Syntax Checker plugin. |
7 Module implementing the Syntax 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 |
42 """ |
44 """ |
43 Constructor |
45 Constructor |
44 |
46 |
45 @param ui reference to the user interface object (UI.UserInterface) |
47 @param ui reference to the user interface object (UI.UserInterface) |
46 """ |
48 """ |
47 super().__init__(ui) |
49 super(SyntaxCheckerPlugin, self).__init__(ui) |
48 self.__ui = ui |
50 self.__ui = ui |
49 self.__initialize() |
51 self.__initialize() |
50 |
52 |
51 def __initialize(self): |
53 def __initialize(self): |
52 """ |
54 """ |