Skip to content

Commit

Permalink
Fixed mypy issue in VideoClips (#8113)
Browse files Browse the repository at this point in the history
  • Loading branch information
vfdev-5 authored Nov 13, 2023
1 parent 15c166a commit 517f6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torchvision/datasets/video_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def __init__(

def _compute_frame_pts(self) -> None:
self.video_pts = []
self.video_fps = []
self.video_fps: List[int] = []

# strategy: use a DataLoader to parallelize read_video_timestamps
# so need to create a dummy dataset first
Expand Down

0 comments on commit 517f6d3

Please sign in to comment.