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