we do want prints in print_pip_install_help

This commit is contained in:
dltn 2024-11-22 13:32:54 -08:00
parent b007b062f3
commit 302a0145e5

View file

@ -90,12 +90,12 @@ def get_provider_dependencies(
def print_pip_install_help(providers: Dict[str, List[Provider]]): def print_pip_install_help(providers: Dict[str, List[Provider]]):
normal_deps, special_deps = get_provider_dependencies(providers) normal_deps, special_deps = get_provider_dependencies(providers)
log.info( print(
f"Please install needed dependencies using the following commands:\n\n\tpip install {' '.join(normal_deps)}" f"Please install needed dependencies using the following commands:\n\n\tpip install {' '.join(normal_deps)}"
) )
for special_dep in special_deps: for special_dep in special_deps:
log.info(f"\tpip install {special_dep}") log.info(f"\tpip install {special_dep}")
log.info() print()
def build_image(build_config: BuildConfig, build_file_path: Path): def build_image(build_config: BuildConfig, build_file_path: Path):