93 @type str |
93 @type str |
94 @exception PluginPathError raised to indicate an invalid plug-in path |
94 @exception PluginPathError raised to indicate an invalid plug-in path |
95 @exception PluginModulesError raised to indicate the absence of |
95 @exception PluginModulesError raised to indicate the absence of |
96 plug-in modules |
96 plug-in modules |
97 """ |
97 """ |
98 super(PluginManager, self).__init__(parent) |
98 super().__init__(parent) |
99 |
99 |
100 self.__ui = parent |
100 self.__ui = parent |
101 self.__develPluginFile = develPlugin |
101 self.__develPluginFile = develPlugin |
102 self.__develPluginName = None |
102 self.__develPluginName = None |
103 if disabledPlugins is not None: |
103 if disabledPlugins is not None: |