Skip to content

Commit bdb545e

Browse files
committed
Bump
1 parent 12c0ff3 commit bdb545e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies = [
1919
"polars>=0.20.26",
2020
"pyarrow>=14.0",
2121
]
22-
version = "0.1.32"
22+
version = "0.1.33"
2323
classifiers = [
2424
"Development Status :: 3 - Alpha",
2525
"Programming Language :: Python :: 3",

src/npc_ephys/spikeinterface.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def default_qc(self, probe: str) -> npt.NDArray[np.floating]:
424424
).read_bytes()
425425
)
426426
)
427-
427+
428428
@functools.cache
429429
def decoder_probability(self, probe: str) -> npt.NDArray[np.floating]:
430430
return np.load(
@@ -434,7 +434,7 @@ def decoder_probability(self, probe: str) -> npt.NDArray[np.floating]:
434434
).read_bytes()
435435
)
436436
)
437-
437+
438438
@functools.cache
439439
def decoder_label(self, probe: str) -> npt.NDArray[np.str_]:
440440
return np.load(
@@ -451,11 +451,13 @@ def spike_amplitudes(self, probe: str) -> npt.NDArray[np.floating]:
451451
return np.load(
452452
io.BytesIO(
453453
self.get_correct_path(
454-
self.postprocessed(probe), "spike_amplitudes", "amplitude_segment_0.npy"
454+
self.postprocessed(probe),
455+
"spike_amplitudes",
456+
"amplitude_segment_0.npy",
455457
).read_bytes()
456458
)
457459
)
458-
460+
459461
@functools.cache
460462
def unit_locations(self, probe: str) -> npt.NDArray[np.floating]:
461463
return np.load(

0 commit comments

Comments
 (0)