From 14602974377c90869e835387f7ff0cb16fb227e1 Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Wed, 21 Feb 2024 17:41:40 +0000 Subject: [PATCH] nit: run python formatting --- tasks/libfake.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/libfake.py b/tasks/libfake.py index 3c96637..49137e8 100644 --- a/tasks/libfake.py +++ b/tasks/libfake.py @@ -47,7 +47,9 @@ def fake(ctx, clean=False): run("ninja install", shell=True, cwd=build_dir, check=True, env=work_env) # Copy shared object into place - sysroot_files = join(build_env["FAASM_WASM_LIB_INSTALL_DIR"], "libfake*.so") + sysroot_files = join( + build_env["FAASM_WASM_LIB_INSTALL_DIR"], "libfake*.so" + ) runtime_lib_dir = join(FAASM_RUNTIME_ROOT, "lib", "fake") makedirs(runtime_lib_dir, exist_ok=True)