Conditions | 1 |
Total Lines | 8 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | from abc import ABC |
||
11 | def execute(self, file_names: Optional[List[str]] = None) -> int: |
||
12 | """ |
||
13 | Does the actual execution of the routine loader command for the backend. Returns 0 on success. Otherwise, |
||
14 | returns nonzero. |
||
15 | |||
16 | :param file_names: The sources that must be loaded. If None all sources (if required) will be loaded. |
||
17 | """ |
||
18 | pass |
||
19 | |||
21 |