diff --git a/kodi_addon_checker/check_py3_compatibility.py b/kodi_addon_checker/check_py3_compatibility.py index 70bfb439..2b4c0740 100644 --- a/kodi_addon_checker/check_py3_compatibility.py +++ b/kodi_addon_checker/check_py3_compatibility.py @@ -58,8 +58,23 @@ def Check_Py3_compatibility(report: Report, path: str): :path: path to the addon """ fixer_names = [] - list_of_fixes = ['import', 'dict', 'except', 'filter', 'has_key', 'itertools', - 'map', 'ne', 'next', 'print', 'renames', 'types', 'xrange', 'zip'] + list_of_fixes = [ + 'dict', + 'except', + 'filter', + 'has_key', + 'import', + 'itertools', + 'map', + 'ne', + 'next', + 'numliterals', + 'print', + 'renames', + 'types', + 'xrange', + 'zip' + ] for fix in list_of_fixes: fixer_names.append('lib2to3.fixes.fix_' + fix)