Skip to content

Commit 53ff607

Browse files
fix typo from previous commit
1 parent 9c82bfc commit 53ff607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datajoint/declare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def compile_attribute(line, in_key, foreign_key_sql):
272272
match = {k: v.strip() for k, v in match.items()}
273273
match['nullable'] = match['default'].lower() == 'null'
274274
acceptable_datatype_pattern = r'^(time|date|year|enum|(var)?char|float|real|double|decimal|numeric|' \
275-
r'(tiny|small|medium|big)?int|bool?|' \
275+
r'(tiny|small|medium|big)?int|bool|' \
276276
r'(tiny|small|medium|long)?blob|external|attach)'
277277
if re.match(acceptable_datatype_pattern, match['type']) is None:
278278
raise DataJointError('DataJoint does not support datatype "{type}"'.format(**match))

0 commit comments

Comments
 (0)