| Total Complexity | 4 | 
| Total Lines | 14 | 
| Duplicated Lines | 0 % | 
| 1 | #! /usr/bin/env python  | 
            ||
| 24 | class PhysicochemicalFingerprinter(Fingerprinter):  | 
            ||
| 25 | |||
| 26 | NAME = 'physchem'  | 
            ||
| 27 | |||
| 28 | def __init__(self, descriptors='all'):  | 
            ||
| 29 | if descriptors == 'all':  | 
            ||
| 30 | self.descriptors = DESCRIPTORS  | 
            ||
| 31 | else:  | 
            ||
| 32 | self.descriptors = descriptors  | 
            ||
| 33 | self.descriptor_names, _ = zip(*self.descriptors)  | 
            ||
| 34 | |||
| 35 | def _transform(self, mol):  | 
            ||
| 36 | |||
| 37 |         return pd.Series({n: f(mol) for (n, f) in self.descriptors}, name=mol.name) | 
            ||
| 38 | 
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.