| Total Complexity | 1 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | """Data structures for all settings.""" |
||
| 14 | 1 | @yorm.attr(computers=Computers) |
|
| 15 | 1 | @yorm.attr(applications=Applications) |
|
| 16 | 1 | class ProgramConfig(yorm.types.AttributeDictionary): |
|
| 17 | """Dictionary of program configuration settings.""" |
||
| 18 | |||
| 19 | 1 | def __init__(self, applications=None, computers=None): |
|
| 20 | 1 | super().__init__() |
|
| 21 | 1 | self.applications = applications or Applications() |
|
| 22 | self.computers = computers or Computers() |
||
| 23 |
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__.pyfiles in your module folders. Make sure that you place one file in each sub-folder.