From 2e8faa1f41fe63439bee6c89d78cd8cabfc05c02 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Mon, 12 Feb 2024 00:29:20 -0800 Subject: [PATCH] Delete print statements --- ulwgl_run.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ulwgl_run.py b/ulwgl_run.py index 4077f39..f1cbec4 100755 --- a/ulwgl_run.py +++ b/ulwgl_run.py @@ -299,11 +299,9 @@ def main() -> None: # noqa: D103 # Set all environment variables # NOTE: `env` after this block should be read only for key, val in env.items(): - print(f"Setting environment variable: {key}={val}") os.environ[key] = val build_command(env, command) - print(f"The following command will be executed: {command}") subprocess.run(command, check=True, stdout=subprocess.PIPE, text=True)