Conditions | 1 |
Total Lines | 13 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | from typing import List |
||
22 | def get_default_commands(self) -> List[Command]: |
||
23 | """ |
||
24 | Returns the default commands of this application. |
||
25 | |||
26 | :rtype: list[Command] |
||
27 | """ |
||
28 | commands = Application.get_default_commands(self) |
||
29 | |||
30 | # Kerapu: |
||
31 | commands.append(ShredderCommand()) |
||
32 | commands.append(TestShredderCommand()) |
||
33 | |||
34 | return commands |
||
35 | |||
37 |