Skip to content

Commit 83d70a6

Browse files
authored
black formatting
1 parent 129da57 commit 83d70a6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

neo/rawio/blackrockrawio.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,10 @@ def __read_nsx_data_variant_a(self, nsx_nb):
10581058
filename = ".".join([self._filenames["nsx"], f"ns{nsx_nb}"])
10591059

10601060
# get shape of data
1061-
shape = (int(self.__nsx_params["2.1"](nsx_nb)["nb_data_points"]), int(self.__nsx_basic_header[nsx_nb]["channel_count"]))
1061+
shape = (
1062+
int(self.__nsx_params["2.1"](nsx_nb)["nb_data_points"]),
1063+
int(self.__nsx_basic_header[nsx_nb]["channel_count"]),
1064+
)
10621065
offset = int(self.__nsx_params["2.1"](nsx_nb)["bytes_in_headers"])
10631066

10641067
# read nsx data

neo/rawio/intanrawio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
_signal_buffer_dtype,
3636
_spike_channel_dtype,
3737
_event_channel_dtype,
38-
)
38+
)
3939

4040

4141
class IntanRawIO(BaseRawIO):

0 commit comments

Comments
 (0)