def initialize(self, context):
     """Initialize method
     :type context: cloudshell.shell.core.context.driver_context.InitCommandContext
     """
     session_pool_size = int(get_attribute_by_name(context=context, attribute_name='Sessions Concurrency Limit'))
     self._cli = get_cli(session_pool_size)
     return 'Finished initializing'
 def initialize(self, context):
     """Initialize method
     :type context: cloudshell.shell.core.context.driver_context.InitCommandContext
     """
     session_pool_size = int(
         get_attribute_by_name(context=context,
                               attribute_name='Sessions Concurrency Limit'))
     self._cli = get_cli(session_pool_size)
     return 'Finished initializing'