Conditions | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """ |
||
23 | def handle(self): |
||
24 | """ |
||
25 | Reads the arguments and starts SDoc application. |
||
26 | """ |
||
27 | self.output = SdocStyle(self.input, self.output) |
||
28 | |||
29 | sdoc = SDoc() |
||
30 | sdoc.io = self.output |
||
31 | sdoc.config_path = self.input.get_argument('config.cfg') |
||
32 | |||
33 | return sdoc.run_sdoc(self.input.get_argument('main.sdoc')) |
||
34 | |||
36 |