Skip to content

Commit 62d2235

Browse files
authored
Merge pull request hed-standard#744 from IanCa/fix_tabular_input
Fix get_def_dict to return value if no sidecar
2 parents 514c7fb + c98deca commit 62d2235

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hed/models/tabular_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def get_def_dict(self, hed_schema, extra_def_dicts=None):
6767
if self._sidecar:
6868
return self._sidecar.get_def_dict(hed_schema, extra_def_dicts)
6969
else:
70-
super().get_def_dict(hed_schema, extra_def_dicts)
70+
return super().get_def_dict(hed_schema, extra_def_dicts)
7171

7272
def get_column_refs(self):
7373
""" Returns a list of column refs for this file.

0 commit comments

Comments
 (0)