Skip to content

Commit 72dcd55

Browse files
authored
Merge pull request #1712 from NeuralEnsemble/black-formatting
Black formatting
2 parents 43f2c36 + b8cd009 commit 72dcd55

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

neo/rawio/blackrockrawio.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,9 +1258,7 @@ def __read_nev_data(self, nev_data_masks, nev_data_types):
12581258
# based on blackrock's own code this is okay so applying an int to round down is necessary to obtain the
12591259
# memory map of full packets and toss the partial packet.
12601260
# See reference: https://github.com/BlackrockNeurotech/Python-Utilities/blob/fa75aa671680306788e10d3d8dd625f9da4ea4f6/brpylib/brpylib.py#L580-L587
1261-
n_packets = int(
1262-
(self.__get_file_size(filename) - header_size) / data_size
1263-
)
1261+
n_packets = int((self.__get_file_size(filename) - header_size) / data_size)
12641262

12651263
raw_data = np.memmap(
12661264
filename,

0 commit comments

Comments
 (0)