def _get_installed_charts_in_namespace()

in subcommands/install.py [0:0]


def _get_installed_charts_in_namespace(namespace):
    command = ["helm", "ls", "-n", namespace, "--short"]
    return subprocess.check_output(command).decode("utf-8").split("\n")