Skip to content

Commit 888e7f7

Browse files
committed
Fix typing bug
1 parent 9ff2e04 commit 888e7f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

element_array_ephys/probe.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Neuropixels Probes
33
"""
4+
from typing import List
45

56
import datajoint as dj
67
import numpy as np
@@ -216,7 +217,7 @@ def build_electrode_layouts(
216217
shank_count: int = 1,
217218
shank_spacing: float = None,
218219
y_origin="bottom",
219-
) -> list[dict]:
220+
) -> List[dict]:
220221

221222
"""Builds electrode layouts.
222223

0 commit comments

Comments
 (0)