Skip to content

Commit 992d2df

Browse files
committed
Fix lint failure (ruff format)
1 parent 5f97cca commit 992d2df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def run_with_logging(cmd, cwd=None):
255255
encoding="utf-8",
256256
) as p:
257257
try:
258-
for line in (p.stdout or ()):
258+
for line in p.stdout or ():
259259
logging.debug(">>>> %s", line.rstrip())
260260
except:
261261
p.kill()

0 commit comments

Comments
 (0)