Skip to content

Commit 695ef15

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

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/probeinterface/neuropixels_tools.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -858,8 +858,7 @@ def read_spikeglx(file: str | Path) -> Probe:
858858
split_mux = adc_sampling_table.split(")(")[1:]
859859
num_adcs, num_channels_per_adc = map(int, adc_info[1:].split(","))
860860
adc_groups_list = [
861-
np.array(each_mux.replace("(", "").replace(")", "").split(" ")).astype("int")
862-
for each_mux in split_mux
861+
np.array(each_mux.replace("(", "").replace(")", "").split(" ")).astype("int") for each_mux in split_mux
863862
]
864863
mux_table = np.transpose(np.array(adc_groups_list))
865864

0 commit comments

Comments
 (0)