Skip to content

Commit 9972770

Browse files
committed
remove env passthrough
1 parent 6fe2967 commit 9972770

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system_tests/lewis_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def julabo_simulation():
3434

3535

3636
def run_control_command(mode, command, value):
37-
subprocess.check_output(["uv", "run", str(LEWIS_CONTROL_PATH), mode, command, value], env=os.environ).decode()
37+
subprocess.check_output(["uv", "run", str(LEWIS_CONTROL_PATH), mode, command, value]).decode()
3838

3939

4040
def santise_whitespace(input_str):
@@ -43,7 +43,7 @@ def santise_whitespace(input_str):
4343

4444
def query_device_status():
4545
return santise_whitespace(
46-
subprocess.check_output(["uv", "run", str(LEWIS_CONTROL_PATH), "device"], env=os.environ).decode()
46+
subprocess.check_output(["uv", "run", str(LEWIS_CONTROL_PATH), "device"]).decode()
4747
)
4848

4949

0 commit comments

Comments
 (0)