(self)
| 2438 | |
| 2439 | @property |
| 2440 | def data_class(self): |
| 2441 | if self._data_class is None: |
| 2442 | module = import_module(self.module_str) |
| 2443 | self._data_class = getattr(module, self.data_class_str) |
| 2444 | |
| 2445 | return self._data_class |
| 2446 | |
| 2447 | def description(self): |
| 2448 | desc = ( |
no outgoing calls
no test coverage detected