Skip to content
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion ERPparam/objs/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __getitem__(self, index):
def has_data(self):
"""Indicator for if the object contains data."""

return True if np.any(self.signals) else False
return True if (np.any(self.signals) and np.any(self.time)) else False


@property
Expand Down