[diffusion] chore: clean excessive document (#16986)

This commit is contained in:
Mick
2026-01-13 21:33:50 +08:00
committed by GitHub
parent 888d7e54d1
commit 7a869045b6
27 changed files with 36 additions and 236 deletions
@@ -83,12 +83,7 @@ def parse_args():
def collect_test_items(files, filter_expr=None):
"""Collect test item node IDs from the given files using pytest --collect-only.
Raises:
RuntimeError: If pytest collection fails due to errors (e.g., syntax errors,
import errors, or other collection failures).
"""
"""Collect test item node IDs from the given files using pytest --collect-only."""
cmd = [sys.executable, "-m", "pytest", "--collect-only", "-q"]
if filter_expr:
cmd.extend(["-k", filter_expr])
@@ -277,7 +277,7 @@ def _get_video_dimensions_from_metadata(
if width == 0 or height == 0:
return None
return (int(width), int(height))
return int(width), int(height)
def _get_video_dimensions_from_frame(cap: cv2.VideoCapture) -> tuple[int, int]:
@@ -289,8 +289,6 @@ def _get_video_dimensions_from_frame(cap: cv2.VideoCapture) -> tuple[int, int]:
Returns:
Tuple of (width, height)
Raises:
ValueError: If unable to read a frame from the video
"""
ret, frame = cap.read()
if not ret or frame is None:
@@ -298,7 +296,7 @@ def _get_video_dimensions_from_frame(cap: cv2.VideoCapture) -> tuple[int, int]:
# frame.shape is (height, width, channels)
height, width = frame.shape[:2]
return (int(width), int(height))
return int(width), int(height)
def get_video_dimensions(file_path: str) -> tuple[int, int]:
@@ -306,14 +304,9 @@ def get_video_dimensions(file_path: str) -> tuple[int, int]:
Tries to get dimensions from metadata first, falls back to reading first frame.
Args:
file_path: Path to the video file
Returns:
Tuple of (width, height)
Raises:
ValueError: If unable to get video dimensions
"""
cap = cv2.VideoCapture(file_path)
try: