| Conditions | 1 |
| Total Lines | 13 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | from typing import List, Optional |
||
| 22 | def execute(self, file_names: Optional[List[str]] = None) -> int: |
||
| 23 | """ |
||
| 24 | Does the actual execution of the routine loader command for the backend. Returns 0 on success. Otherwise |
||
| 25 | returns nonzero. |
||
| 26 | |||
| 27 | :param list[str]|None file_names: The sources that must be loaded. If none all sources (if required) will |
||
| 28 | loaded. |
||
| 29 | |||
| 30 | :rtype: int |
||
| 31 | """ |
||
| 32 | self._io.title('Loader') |
||
| 33 | |||
| 34 | return 0 |
||
| 35 | |||
| 37 |