Conditions | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | 1 | from cleo.helpers import argument |
|
15 | 1 | def _handle(self) -> int: |
|
16 | """ |
||
17 | Reads the arguments and starts SDoc1 application. |
||
18 | """ |
||
19 | 1 | sdoc = SDoc() |
|
20 | 1 | sdoc.io = SDocIO(self.io.input, self.io.output, self.io.error_output) |
|
21 | |||
22 | 1 | return sdoc.run_sdoc1(self.argument('main.sdoc'), self.argument('output.sdoc2')) |
|
23 | |||
25 |