| Total Complexity | 4 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # pylint: disable=unused-variable,expression-not-assigned |
||
| 4 | |||
| 5 | |||
| 6 | View Code Duplication | def describe_latest(): |
|
| 7 | |||
| 8 | def it_returns_filtered_images_by_default(client): |
||
| 9 | response = client.get("/latest") |
||
| 10 | |||
| 11 | expect(response.status_code) == 200 |
||
| 12 | expect(response.mimetype) == 'text/html' |
||
| 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.