diff --git a/schematic/schemas/data_model_parser.py b/schematic/schemas/data_model_parser.py index 9aa6573de..6434d5b70 100644 --- a/schematic/schemas/data_model_parser.py +++ b/schematic/schemas/data_model_parser.py @@ -101,6 +101,7 @@ def parse_model(self) -> dict[str, dict[str, Any]]: off base model. """ # base_model = self.parse_base_model() + # Call appropriate data model parser and return parsed model. if self.model_type == "CSV": csv_parser = DataModelCSVParser()