From 27323ab52fbbef125fa8aa259a490a4dbb4d5689 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 18 May 2023 15:08:47 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tljh/installer.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tljh/installer.py b/tljh/installer.py index 926ffbfd..96b9880b 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -270,7 +270,9 @@ def ensure_user_environment(user_requirements_txt_file): # Install a matching jupyterhub version in the hub env # - jupyterhub_version = conda.get_conda_package_versions(HUB_ENV_PREFIX, "^jupyterhub$").get("jupyterhub") + jupyterhub_version = conda.get_conda_package_versions( + HUB_ENV_PREFIX, "^jupyterhub$" + ).get("jupyterhub") conda.ensure_pip_packages(USER_ENV_PREFIX, [f"jupyterhub=={jupyterhub_version}"]) # Install user environment extras for initial installations