Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
Félix Piédallu committed Mar 14, 2024
1 parent bf2e3ee commit 3dbbc73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion custom-catalog/catalog_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 3dbbc73

Please sign in to comment.