| Conditions | 3 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | #! /usr/bin/env python |
||
| 48 | @property |
||
| 49 | def props(self): |
||
| 50 | |||
| 51 | """ Return a dictionary of properties of the atom. """ |
||
| 52 | |||
| 53 | # Some atom properties are inaccessible, but still give values. |
||
| 54 | # |
||
| 55 | |||
| 56 | props = {} |
||
| 57 | |||
| 58 | for prop in self.GetPropNames(): |
||
| 59 | try: |
||
| 60 | props[prop] = self.GetProp(prop) |
||
| 61 | except RuntimeError: |
||
| 62 | pass |
||
| 63 | |||
| 64 | return props |
||
| 65 | |||
| 76 |
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.