fix indentation level

This commit is contained in:
brentru 2023-09-13 09:25:00 -04:00
parent 160a7cc7b7
commit 381d0a9e01

View file

@ -474,7 +474,7 @@ def test_examples_in_folder(folderpath):
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
stderr=subprocess.PIPE) stderr=subprocess.PIPE)
try: try:
if BUILD_TIMEOUT: if BUILD_TIMEOUT:
out, err = proc.communicate(timeout=popen_timeout) out, err = proc.communicate(timeout=popen_timeout)
else: else:
out, err = proc.communicate(timeout=120) out, err = proc.communicate(timeout=120)