We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c59bf71 + 3fbe41c commit cc36d92Copy full SHA for cc36d92
1 file changed
openstackclient/common/clientmanager.py
@@ -40,12 +40,6 @@ class ClientManager(clientmanager.ClientManager):
40
in osc-lib so we need to maintain a transition period.
41
"""
42
43
- # A simple incrementing version for the plugin to know what is available
44
- PLUGIN_INTERFACE_VERSION = "2"
45
-
46
- # Let the commands set this
47
- _auth_required = False
48
49
def __init__(
50
self,
51
cli_options=None,
@@ -185,9 +179,6 @@ def get_plugin_modules(group):
185
179
continue
186
180
187
181
mod_list.append(module)
188
- init_func = getattr(module, 'Initialize', None)
189
- if init_func:
190
- init_func('x')
191
182
192
183
# Add the plugin to the ClientManager
193
184
setattr(
0 commit comments