From 8f0c0183a38be43a187c1941213d9c6fe3043c43 Mon Sep 17 00:00:00 2001 From: Kay Robbins <1189050+VisLab@users.noreply.github.com> Date: Mon, 13 Jan 2025 07:28:10 -0600 Subject: [PATCH] Added a TODO to start implementation of HED support in annotations --- mne/annotations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mne/annotations.py b/mne/annotations.py index 629ee7b20cb..1c9ad85b1c9 100644 --- a/mne/annotations.py +++ b/mne/annotations.py @@ -757,6 +757,7 @@ def rename(self, mapping, verbose=None): self.description = np.array([str(mapping.get(d, d)) for d in self.description]) return self +# TODO: Add support for HED annotations for use in epoching. class EpochAnnotationsMixin: """Mixin class for Annotations in Epochs."""