Skip to content

Commit dc2516d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent eb45f5b commit dc2516d

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

mne/annotations.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,8 +1294,14 @@ def __setstate__(self, state):
12941294
"""Unpack from serialized format."""
12951295
self._orig_time = state["_orig_time"]
12961296
self._onset, self._duration, self._description, self._ch_names, self._extras = (
1297-
_check_o_d_s_c_e(state["onset"], state["duration"], state["description"], state["ch_names"], state.get("_extras", None))
1298-
)
1297+
_check_o_d_s_c_e(
1298+
state["onset"],
1299+
state["duration"],
1300+
state["description"],
1301+
state["ch_names"],
1302+
state.get("_extras", None),
1303+
)
1304+
)
12991305

13001306
@fill_doc
13011307
def append(
@@ -1330,7 +1336,7 @@ def append(
13301336
onset, duration, description, ch_names, extras
13311337
)
13321338
hed_string = self._check_hed_strings(hed_string, len(onset))
1333-
1339+
13341340
hed_objs = [
13351341
self.hed_string._validate_hed_string(v, self.hed_string._schema)
13361342
for v in hed_string

0 commit comments

Comments
 (0)