Conditions | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | from coalib.bears.Bear import Bear |
||
27 | def run(self, |
||
28 | filename, |
||
29 | file, |
||
30 | *args, |
||
31 | dependency_results=None, |
||
32 | **kwargs): |
||
33 | """ |
||
34 | Handles the given file. |
||
35 | |||
36 | :param filename: The filename of the file |
||
37 | :param file: The file contents as string array |
||
38 | :return: A list of Result |
||
39 | """ |
||
40 | raise NotImplementedError("This function has to be implemented for a " |
||
41 | "runnable bear.") |
||
48 |