Conditions | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """ |
||
28 | def get_default_commands(self): |
||
29 | """ |
||
30 | Returns the default commands of this application. |
||
31 | |||
32 | :rtype: list[cleo.Command] |
||
33 | """ |
||
34 | commands = Application.get_default_commands(self) |
||
35 | |||
36 | self.add(BootstrapCommand()) |
||
37 | self.add(LoadHostCommand()) |
||
38 | self.add(LoadScheduleCommand()) |
||
39 | |||
40 | return commands |
||
41 | |||
44 |