diff --git a/.github/workflows/python_lint.yml b/.github/workflows/python_lint.yml index 632ce76..3f1fd35 100644 --- a/.github/workflows/python_lint.yml +++ b/.github/workflows/python_lint.yml @@ -15,6 +15,7 @@ jobs: with: use-pylint: false use-pycodestyle: true + extra-pycodestyle-options: "--max-line-length=100" use-flake8: true use-black: false use-mypy: true diff --git a/custom-catalog/catalog_manager.py b/custom-catalog/catalog_manager.py index 09baab7..f6d98c9 100755 --- a/custom-catalog/catalog_manager.py +++ b/custom-catalog/catalog_manager.py @@ -44,7 +44,8 @@ def build(folder=DEFAULT_APPS_FOLDER): apps[app_dict["id"]] = app_dict - # We also remove the app install question and resources parts which aint needed anymore by webadmin etc (or at least we think ;P) + # We also remove the app install question and resources parts which aint needed + # anymore by webadmin etc (or at least we think ;P) for app in apps.values(): if "manifest" in app and "install" in app["manifest"]: del app["manifest"]["install"]