From 8073645661444ecd553320df90427a6105326cb1 Mon Sep 17 00:00:00 2001 From: Christopher Barber Date: Sun, 8 Oct 2023 13:52:28 -0400 Subject: [PATCH] black reformat --- src/whl2conda/cli/install.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/whl2conda/cli/install.py b/src/whl2conda/cli/install.py index 6a9a58c..e3d26d4 100644 --- a/src/whl2conda/cli/install.py +++ b/src/whl2conda/cli/install.py @@ -215,9 +215,7 @@ def conda_bld_install(parsed: InstallArgs, subdir: str): # ["conda", "index", "--subdir", subdir, str(conda_bld_path)] # ) # Really just want subdir, but having problems in CI. See if this works: - subprocess.check_call( - ["conda", "index", str(conda_bld_path)] - ) + subprocess.check_call(["conda", "index", str(conda_bld_path)]) def conda_env_install(parsed: InstallArgs, dependencies: list[str]):