Total Complexity | 6 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 53.85% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | #! /usr/bin/env python |
||
28 | 1 | class DummyProgressBar(object): |
|
29 | |||
30 | 1 | def __init__(self, *args, **kwargs): |
|
31 | pass |
||
32 | |||
33 | 1 | def update(self, val): |
|
34 | pass |
||
35 | |||
36 | 1 | def finish(self): |
|
37 | pass |
||
38 | |||
39 | 1 | def __call__(self, obj): |
|
40 | return obj |
||
41 | |||
42 | 1 | def __enter__(self): |
|
43 | return self |
||
44 | |||
45 | 1 | def __exit__(self, *args, **kwargs): |
|
46 | pass |
||
47 |
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.