Skip to content

Commit

Permalink
Fix for #290
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbhagatio committed Dec 1, 2023
1 parent 72d0458 commit f20c248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aeon/io/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def read(self, file):
specified unique identifier.
"""
data = super().read(file)
data = data[data.event == self.value]
data = data[(data.event & self.value) == self.value]
data["event"] = self.tag
return data

Expand Down

0 comments on commit f20c248

Please sign in to comment.