Retrieve the data associated with `data_path`. :type data_path: str :param data_path: The path to the data you wish to retrieve.
(self, data_path)
| 534 | return base |
| 535 | |
| 536 | def get_data(self, data_path): |
| 537 | """ |
| 538 | Retrieve the data associated with `data_path`. |
| 539 | |
| 540 | :type data_path: str |
| 541 | :param data_path: The path to the data you wish to retrieve. |
| 542 | """ |
| 543 | return self.get_component('data_loader').load_data(data_path) |
| 544 | |
| 545 | def get_service_model(self, service_name): |
| 546 | """Get the service model object. |
no test coverage detected