From c98deca972e65d9d4d75aa8c723a2b6d8ecbd260 Mon Sep 17 00:00:00 2001 From: IanCa Date: Tue, 22 Aug 2023 14:34:02 -0500 Subject: [PATCH] Fix get_def_dict to return value if no sidecar --- hed/models/tabular_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hed/models/tabular_input.py b/hed/models/tabular_input.py index cd3172126..92e63cdd5 100644 --- a/hed/models/tabular_input.py +++ b/hed/models/tabular_input.py @@ -67,7 +67,7 @@ def get_def_dict(self, hed_schema, extra_def_dicts=None): if self._sidecar: return self._sidecar.get_def_dict(hed_schema, extra_def_dicts) else: - super().get_def_dict(hed_schema, extra_def_dicts) + return super().get_def_dict(hed_schema, extra_def_dicts) def get_column_refs(self): """ Returns a list of column refs for this file.