Skip to content

Commit c0f9af4

Browse files
committed
fix small bug
1 parent 50ef3d1 commit c0f9af4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

datajoint/blob.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .settings import config
1515

1616

17-
scalar_types = dict(
17+
scalar_type = dict(
1818
(
1919
# see http://www.mathworks.com/help/techdoc/apiref/mxclassid.html
2020
("UNKNOWN", None),
@@ -55,8 +55,8 @@
5555
np.dtype("uint64"): 15, # UINT64
5656
}
5757

58-
dtype_list = list(scalar_id.values())
59-
type_names = list(scalar_id)
58+
dtype_list = list(scalar_type.values())
59+
type_names = list(scalar_type)
6060

6161
compression = {b"ZL123\0": zlib.decompress}
6262

0 commit comments

Comments
 (0)