| Conditions | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | #! /usr/bin/env python |
||
| 28 | def __init__(self, descriptors='all'): |
||
| 29 | |||
| 30 | """ Create a physicochemical descriptor generator. |
||
| 31 | |||
| 32 | Args: |
||
| 33 | descriptors (list<(str, func)> or 'all'): |
||
| 34 | Descriptors to calculate, or if 'all', use all descriptors.""" |
||
| 35 | |||
| 36 | if descriptors == 'all': |
||
| 37 | self.descriptors = DESCRIPTORS |
||
| 38 | else: |
||
| 39 | self.descriptors = descriptors |
||
| 40 | self.descriptor_names, _ = zip(*self.descriptors) |
||
| 41 | |||
| 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__.pyfiles in your module folders. Make sure that you place one file in each sub-folder.