Skip to content

Commit da2671e

Browse files
Updating comment to reflect general usage
1 parent 1bc90fa commit da2671e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/frame_sampling/dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def _dataset_exists(self) -> None:
4444
assert self._data_path.exists()
4545

4646
def _get_filepaths(self) -> Generator[Path, None, None]:
47-
"""Scan file system for video files and grab their file paths."""
48-
# iterate over video file extensions
47+
"""Scan target directory for file extensions and grab their file paths."""
48+
# iterate target file extensions
4949
for ext in self.file_extensions:
5050
# loop through video paths matching ext
5151
yield from self._data_path.glob(f"**/{ext}")

0 commit comments

Comments
 (0)