Closed LordGameleo closed 5 years ago
Error on the second line is an import error which is because you don't have the PIL library installed. Also is it important to write doc string of test functions?
docString are not that important for test functions. Its not just tests that is missing function docString.
kodi_addon_checker/reporter.py:44:0: C0301: Line too long (120/100) (line-too-long)
kodi_addon_checker/reporter.py:13:0: C0111: Missing class docstring (missing-docstring)
kodi_addon_checker/reporter.py:15:4: C0111: Missing method docstring (missing-docstring)
kodi_addon_checker/reporter.py:13:0: R0903: Too few public methods (1/2) (too-few-public-methods)
kodi_addon_checker/reporter.py:19:0: C0111: Missing class docstring (missing-docstring)
kodi_addon_checker/reporter.py:19:0: R0205: Class 'ReportManager' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
kodi_addon_checker/reporter.py:23:4: C0111: Missing method docstring (missing-docstring)
kodi_addon_checker/reporter.py:37:4: C0103: Method name "getEnabledReporters" doesn't conform to snake_case naming style (invalid-name)
kodi_addon_checker/reporter.py:37:4: C0111: Missing method docstring (missing-docstring)
kodi_addon_checker/reporter.py:41:0: C0111: Missing function docstring (missing-docstring)```
While checking with pylint, it gives a lot of suggestions to add doc strings in the functions.