From 8948e92c63a536764484b29c7a3f599379fe288d Mon Sep 17 00:00:00 2001 From: Keya Loding Date: Tue, 16 Jul 2024 18:13:53 -0700 Subject: [PATCH] a --- sleap_io/io/nwb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sleap_io/io/nwb.py b/sleap_io/io/nwb.py index 6dcffbca..52c2f0ab 100644 --- a/sleap_io/io/nwb.py +++ b/sleap_io/io/nwb.py @@ -211,7 +211,7 @@ def videos_to_source_videos(videos: List[Video]) -> SourceVideos: # type: ignor external_file=[video.filename], dimension=[video.backend.img_shape[0], video.backend.img_shape[1]], starting_frame=[0], - rate=30.0, + rate=30.0, # TODO - change to `video.backend.fps` when available ) source_videos.append(image_series) return SourceVideos(image_series=source_videos)