Plugins/PluginEricdoc.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2407
b98cc8ee1142
child 2677
3d4277929fb3
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the Ericdoc plugin. 7 Module implementing the Ericdoc 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 from PyQt4.QtGui import QDialog, QApplication 15 from PyQt4.QtGui import QDialog, QApplication
106 """ 108 """
107 Constructor 109 Constructor
108 110
109 @param ui reference to the user interface object (UI.UserInterface) 111 @param ui reference to the user interface object (UI.UserInterface)
110 """ 112 """
111 super().__init__(ui) 113 super(EricdocPlugin, self).__init__(ui)
112 self.__ui = ui 114 self.__ui = ui
113 self.__initialize() 115 self.__initialize()
114 116
115 def __initialize(self): 117 def __initialize(self):
116 """ 118 """

eric ide

mercurial