Skip to content

Commit 2da51c0

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 6f1e5f0 commit 2da51c0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

moabb/datasets/castillos2023.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def __init__(
4040
self.n_channels = 32
4141
self.window_size = window_size
4242

43-
4443
def _get_single_subject_data(self, subject):
4544
"""Return the data of a single subject."""
4645
file_path_list = self.data_path(subject, self.paradigm_type)
@@ -333,7 +332,7 @@ class CastillosBurstVEP100(BaseCastillos2023):
333332
334333
"""
335334

336-
def __init__(self,window_size=0.25):
335+
def __init__(self, window_size=0.25):
337336
super().__init__(
338337
events={"0": 100, "1": 101},
339338
sessions_per_subject=1,
@@ -389,7 +388,7 @@ class CastillosBurstVEP40(BaseCastillos2023):
389388
390389
"""
391390

392-
def __init__(self,window_size=0.25):
391+
def __init__(self, window_size=0.25):
393392
super().__init__(
394393
events={"0": 100, "1": 101},
395394
sessions_per_subject=1,
@@ -444,7 +443,7 @@ class CastillosCVEP100(BaseCastillos2023):
444443
445444
"""
446445

447-
def __init__(self,window_size=0.25):
446+
def __init__(self, window_size=0.25):
448447
super().__init__(
449448
events={"0": 100, "1": 101},
450449
sessions_per_subject=1,
@@ -500,7 +499,7 @@ class CastillosCVEP40(BaseCastillos2023):
500499
501500
"""
502501

503-
def __init__(self,window_size=0.25):
502+
def __init__(self, window_size=0.25):
504503
super().__init__(
505504
events={"0": 100, "1": 101},
506505
sessions_per_subject=1,

0 commit comments

Comments
 (0)