From c95c302015cd0ee61eb9b4f215127048c1b84b7d Mon Sep 17 00:00:00 2001 From: bruAristimunha Date: Sun, 10 Sep 2023 14:02:23 +0200 Subject: [PATCH] flake8 --- braindecode/models/util.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/braindecode/models/util.py b/braindecode/models/util.py index 61cc06baf..b6439fb26 100644 --- a/braindecode/models/util.py +++ b/braindecode/models/util.py @@ -153,8 +153,11 @@ def aggregate_probas(logits, n_windows_stride=1): models_dict = {} -# For the models inside the init model, go through all the models -# check those have the EEGMixin class inherited. If they are, add them to the list. +# For the models inside the init model, go through all the models +# check those have the EEGMixin class inherited. If they are, add them to the +# list. + + def _init_models_dict(): for m in inspect.getmembers(models, inspect.isclass): if (issubclass(m[1], models.base.EEGModuleMixin)