Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Fix TimeSeries data does not match length of timestamps should raise an error when created #1538

Merged
merged 17 commits into from
Feb 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
adapt to new construct
  • Loading branch information
h-mayorquin committed Jan 28, 2025
commit 2be4fd7d6f7e0c5f834e4dfae9c8b028d63bc57e
2 changes: 1 addition & 1 deletion src/pynwb/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def _check_image_series_dimension(self):
is provided. Otherwise, this function calls the parent class' _check_time_series_dimension method.
"""
if self.external_file is not None:
return True
return
return super()._check_time_series_dimension()

def _check_external_file_starting_frame_length(self):
Expand Down
Loading