Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bruAristimunha committed Sep 10, 2023
1 parent c747886 commit c95c302
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions braindecode/models/util.py
Expand Up @@ -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)
Expand Down

0 comments on commit c95c302

Please sign in to comment.