Exemple #1
0
def unload_commands(commands_list):
    """
  Takes in a list of command names and removes the commands from
  Lyntin by calling exported.remove_command.

  @param commands_list: the list of command names to remove
  @type  commands_list: list of strings
  """
    for mem in commands_list:
        exported.remove_command(mem)
Exemple #2
0
def unload_commands(commands_list):
  """
  Takes in a list of command names and removes the commands from
  Lyntin by calling exported.remove_command.

  @param commands_list: the list of command names to remove
  @type  commands_list: list of strings
  """
  for mem in commands_list:
    exported.remove_command(mem)
Exemple #3
0
def unload():
  exported.remove_command("@")
  exported.remove_command("^load")
  exported.remove_command("^unload")
Exemple #4
0
def unload():
    exported.remove_command("@")
    exported.remove_command("^load")
    exported.remove_command("^unload")