Conditions | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1.5786 |
Changes | 0 |
1 | """ |
||
30 | 1 | def get_default_commands(self): |
|
31 | """ |
||
32 | Returns the default commands of this application. |
||
33 | |||
34 | :rtype: list[cleo.Command] |
||
35 | """ |
||
36 | commands = Application.get_default_commands(self) |
||
37 | |||
38 | self.add(SDocCommand()) |
||
39 | self.add(SDoc1Command()) |
||
40 | self.add(SDoc2Command()) |
||
41 | |||
42 | return commands |
||
43 | |||
45 |