Conditions | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """ |
||
34 | 1 | def handle(self): |
|
35 | """ |
||
36 | Reads the arguments and starts SDoc application. |
||
37 | """ |
||
38 | 1 | self._io = SdocStyle(self.input, self.output) |
|
39 | |||
40 | 1 | sdoc = SDoc() |
|
41 | 1 | sdoc.io = self._io |
|
42 | 1 | sdoc.config_path = self.argument('config.cfg') |
|
43 | |||
44 | 1 | return sdoc.run_sdoc(self.argument('main.sdoc')) |
|
45 | |||
47 |