The expression expect(install()) == False does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
The expression expect(update()) == False does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
The expression expect(display()) == False does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
The expression expect(delete()) == False does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
The expression expect(_find_root(FILES)) == FILES does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
The expression expect(_find_root(None, cwd=ROOT)) == PROJECT_ROOT does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
The expression expect(_find_root(PROJEC...=ROOT)) == PROJECT_ROOT does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
The expression expect(_find_root(None, ...ENT)) == PROJECT_PARENT does not seem to have sideeffects and its result is not used.
If a expression has no sideeffects (any lasting effect after it has been called) and its
return value is not used, this usually means that this code can be removed or that
an assignment is missing.
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.