Conditions | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """ |
||
36 | def handle(self): |
||
37 | """ |
||
38 | Reads the arguments and starts SDoc1 application. |
||
39 | """ |
||
40 | self.output = SdocStyle(self.input, self.output) |
||
41 | |||
42 | main_sdoc_file = self.argument('main_sdoc_file') |
||
43 | output_file = self.argument('output_file') |
||
44 | |||
45 | sdoc = SDoc(self.output) |
||
46 | sdoc.test_sdoc1(main_sdoc_file, output_file) |
||
47 | |||
49 |
This can be caused by one of the following:
1. Missing Dependencies
This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.
2. Missing __init__.py files
This error could also result from missing
__init__.py
files in your module folders. Make sure that you place one file in each sub-folder.