Skip to content

Commit 608b8e7

Browse files
Remove unused variables to address code-lints error.
1 parent 1efacda commit 608b8e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/tests/run_tv_casting_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,14 +148,14 @@ def test_discovery_fn():
148148
# Run the Linux tv-app and write the output to file
149149
tv_app_rel_path = 'out/tv-app/chip-tv-app'
150150
tv_app_abs_path = os.path.abspath(tv_app_rel_path)
151-
p1 = subprocess.Popen(tv_app_abs_path, stdout=fd1, stderr=subprocess.PIPE, text=True)
151+
subprocess.Popen(tv_app_abs_path, stdout=fd1, stderr=subprocess.PIPE, text=True)
152152

153153
time.sleep(5)
154154

155155
# Run the Linux tv-casting-app and write the output to file
156156
tv_casting_app_rel_path = 'out/tv-casting-app/chip-tv-casting-app'
157157
tv_casting_app_abs_path = os.path.abspath(tv_casting_app_rel_path)
158-
p2 = subprocess.Popen(tv_casting_app_abs_path, stdout=fd2, stderr=subprocess.PIPE, text=True)
158+
subprocess.Popen(tv_casting_app_abs_path, stdout=fd2, stderr=subprocess.PIPE, text=True)
159159

160160
# Wait for the processes to finish writing before attempting to read
161161
time.sleep(15)

0 commit comments

Comments
 (0)