Skip to content

Commit 570939c

Browse files
committed
linting
1 parent 17255cf commit 570939c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bil/api/formatS.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def _get_30k(
402402
channel_slice = self.study.subject.region_chs[region_name]
403403
data.append(h5_dataset[channel_slice, start:stop])
404404
truncate = min(x.shape[-1] for x in data)
405-
output = np.row_stack([x[..., :truncate] for x in data])
405+
output = np.vstack([x[..., :truncate] for x in data])
406406
return output
407407

408408
def _neural(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "uv_build"
77

88
[project]
99
name = "bilab"
10-
version = "0.1.4"
10+
version = "0.1.5"
1111
description = "A data API for the Brain Interfacing Laboratory"
1212
readme = "README.md"
1313
requires-python = ">=3.9"

0 commit comments

Comments
 (0)